﻿.loadingIndicator {
    margin-left: 5px; /* Space between text and spinner */
}

.invoice-link {
    color: #007bff; /* Bootstrap primary color */
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background-color: #f8f9fa; /* Light background for contrast */
    transition: background-color 0.3s ease;
}

    .invoice-link:hover {
        background-color: #e9ecef; /* Slightly darker on hover */
        text-decoration: underline;
    }


.toast-body .text-white {
    color: black !important;
}

#coup.disabled {
    pointer-events: none; /* Disables clicks */
    color: gray; /* Optional styling for disabled look */
    opacity: 0.6;
}

#pageOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999; /* Ensure it appears above all content */
    display: none; /* Initially hidden */
}

#rating-stars .star {
    font-size: 24px;
    color: gray;
    cursor: pointer;
}

    #rating-stars .star.selected {
        color: gold;
    }

#btnScrollTo {
    left: 10px !important; /* Adjust as needed */
    bottom: 10px !important; /* Adjust as needed */
    width:60px !important;
}

.quantity-container {
    display: flex;
    align-items: center;
}

.quantity-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

    .quantity-btn:hover {
        background-color: #0056b3;
    }

