/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.minus-btn {
    background-color: #ff0000;  /* Red background */
    color: white;               /* White text/symbol for contrast */
    border: none;
    border-radius: 50%;         /* Circular shape */
    width: 24px;
    height: 24px;
    font-size: 24px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    display:none;
}

.minus-btn:hover {
    background-color: #cc0000;  /* Darker red on hover */
}

/* Optional: Style for the edit button */
#edit-cart-btn {
    background-color: #007bff;  /* Blue background */
    color: white;
    padding: 0;
    border: none;
    cursor: pointer;
    margin-left: 140px;  /* Space below the button */
}

#edit-cart-btn:hover {
    background-color: #0056b3;
}

/* Style the containing div (optional: for layout and alignment) */
.quantity-edit-input {
    display: inline-block; /* Keeps it inline with other cart elements */
    margin: 0 5px; /* Add some spacing around the field */
    text-align: center; /* Center the input inside the div */
}

/* Style the input itself */
input.quantity-edit-input {
    width: 25px; /* Adjust width to fit typical quantities (e.g., 1-999) */
    padding: 2px; /* Add internal spacing for better touch/click area */
    border: none; /* Light border for visibility; change to 'none' for borderless */
    border-radius: 4px; /* Rounded corners for a modern look */
    font-size: 14px; /* Match font size to surrounding text */
    text-align: center; /* Center the number inside the input */
    background-color: #f9f9f9; /* Light background for subtle highlighting */
    color: #333; /* Text color */
}

/* Optional: Hide spin buttons (up/down arrows) for number inputs in Chrome/Safari/Edge */
input.quantity-edit-input::-webkit-outer-spin-button,
input.quantity-edit-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Optional: Hide spin buttons in Firefox */
input.quantity-edit-input[type="number"] {
    -moz-appearance: textfield; /* Makes it look like a regular text input */
}

/* Optional: Focus state for better UX */
input.quantity-edit-input:focus {
    border-color: #007bff; /* Highlight border on focus (e.g., blue) */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Soft glow effect */
}

/* Optional: Hover state for interactivity */
input.quantity-edit-input:hover {
    border-color: #aaa; /* Darker border on hover */
}

.flux-card {
    background-color: #ffffff; /* White background */
    border: 1px solid #e5e7eb; /* Light gray border */
    border-radius: 0.5rem; /* Rounded corners */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Medium shadow */
    padding: 1.5rem; /* Internal padding */
}

.flux-card-header {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.flux-card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827; /* Dark gray text */
}

.flux-card-content {
    color: #374151; /* Medium gray text */
}

.flux-card-footer {
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.5rem;
    text-align: right;
}

.flux-card-button {
    background-color: #3b82f6; /* Blue */
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
}

.flux-card-button:hover {
    background-color: #2563eb; /* Darker blue on hover */
}
.tab-navigation button {
    background-color: #f1f1f1;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.tab-navigation button.active {
    background-color: #ddd;
}

.tab-content > div {
    display: none;
    padding: 20px;
}
