.button-container {
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center;    /* Vertically center */
  height: 100px;
}

.center-button {
  padding: 10px 20px;
  font-size: 14px;
	border-radius: 8px;
}

.hidden {
    display: none; /* Hides the element completely */
}

/* Form Labels */
#owner-info span.label,
#chip-registration-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

/* Form Inputs */
#chip-registration-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

#chip-registration-form input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}


/* Page Styles */
#chip-registration-form,
#owner-info,
.custom-my-account,
.chip-ids-contain {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#owner-info h2,
#chip-registration-form h2,
.custom-my-account h2,
.chip-ids-contain h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.custom-my-account h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #555;
}

#owner-infos,
.account-details,
.account-actions,
.order-history,
.chip-ids-container {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

#owner-info p,
.account-details p,
.account-actions ul,
.chip-ids-container p,
.chip-ids-container ul {
    margin: 10px 0;
    font-size: 1rem;
    color: #444;
}

.account-actions ul,
.chip-ids-container ul {
    list-style-type: none;
    padding: 0;
}

.account-actions li,
.chip-ids-container li {
    margin-bottom: 10px;
    display: flex; /* Use flexbox to align items in a row */
    justify-content: space-between; /* Space between the name and delete button */
    align-items: center; /* Vertically center align the items */
}

#owner-info a,
.account-actions a,
.chip-ids-container a {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
}

#owner-info a:hover,
.account-actions a:hover,
.chip-ids-container a:hover {
    color: #005177;
}

/* Styling for delete button */
.chip-ids-container button.delete-chip {
    font-size: 0.8rem; /* Smaller font size for the button */
    padding: 5px 10px; /* Smaller padding */
    background-color: #ff5e5e; /* Red background for delete */
    color: white; /* White text */
    border: none;
    border-radius: 15px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto; /* Button width auto to not stretch */
    margin-top: 5px; /* Add some space above the button */
}

/* Hover effect for the delete button */
.chip-ids-container button.delete-chip:hover {
    background-color: #e60000; /* Darker red on hover */
}

.order-history ul

/* Target the price filter input fields inside your custom class */
.no-box .price_slider_amount input[type="text"] {
    background: none !important;  /* Remove background */
    border: none !important;       /* Remove border */
    box-shadow: none !important;   /* Remove any box shadow */
    padding: 0 !important;         /* Remove extra padding */
    color: inherit !important;     /* Inherit text color from parent */
}
#astra-mobile-cart-drawer,
#astra-cart-drawer {
    background-color: #454b25 !important;
    color: #ffffff !important;
}

.woocommerce-product-attributes-item__label {
    color: #7d7736 !important;
}

/* Prevent parent link from navigating */
.menu-item-has-children > a[href="#"] {
    pointer-events: none; /* Disable navigation */
    cursor: pointer; /* Indicate interactivity */
}

/* Show dropdown on hover or focus (click) */
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children > a:focus + .sub-menu {
    display: block !important; /* Force show dropdown */
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hide dropdown by default or when parent loses focus */
.menu-item-has-children > .sub-menu {
    display: none !important; /* Hidden initially */
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(10px); /* Slight offset for animation */
    position: absolute; /* Position below parent */
    z-index: 9999; /* Ensure on top */
    min-width: 150px; /* Adjust as needed */
    background: #fff; /* Customize background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Optional shadow */
}

/* Explicitly hide sub-menu when parent is not focused */
.menu-item-has-children > a:not(:focus) + .sub-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.vp-woo-pont-shipping-method-label::after {
    content: " Írja be az átvevőpont címét!";
    color: red;
}
.vp-woo-pont-shipping-method-label {
    color: inherit; /* Keep other text default */
}

#vp-woo-pont-show-map {
    color: red !important;
}