/* custom.css */
body {
    font-family: 'Poppins', sans-serif;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

footer {
    background-color: #111;
    color: #fff;
}

#bookingLoader {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.4s ease;
}

/* Spinner */
#bookingLoader .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Success checkmark */
.checkmark {
    display: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #28a745;
    position: relative;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 8px;
    width: 15px;
    height: 30px;
    border-right: 3px solid #28a745;
    border-bottom: 3px solid #28a745;
    transform: rotate(45deg);
}

/* Error crossmark */
.crossmark {
    display: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #dc3545;
    /* red border */
    position: relative;
}

.crossmark::before,
.crossmark::after {
    content: '';
    position: absolute;
    top: 13px;
    left: 26px;
    width: 3px;
    height: 30px;
    background-color: #dc3545;
}

.crossmark::before {
    transform: rotate(45deg);
}

.crossmark::after {
    transform: rotate(-45deg);
}

/* Message text */
#bookingLoader p {
    margin-top: 15px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}


.media img {

    width: 60px;
    height: 60px;
}


.reply a {

    text-decoration: none;
}

.star-rating {
    display: flex;
    gap: 5px;
    font-size: 32px;
    cursor: pointer;
    user-select: none;
    height: 40px;
    margin-top: -23px;
}

.star-rating span {
    transition: color 0.2s, transform 0.2s;
    color: #ffc107;
}

.star-rating span.hovered,
.star-rating span.selected {
    color: #ffc107;
}

.star-rating i.active,
.star-rating i.half {
    color: #ffc107;
}

.star-rating span.hovered {
    transform: scale(1.2);
}

#review-form ::placeholder {
    font-size: 15px;
}

#review-form .form-control {
    margin-bottom: 15px !important;
}

.reply-form {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.reply-form textarea {
    resize: none;
    height: 60px;
}

.reply-toggle {
    cursor: pointer;
    color: #0d6efd;
    font-weight: 500;
}

.reply-toggle:hover {
    text-decoration: underline;
}

select option {
    color: #000;
}

.request-form select.form-control {
    appearance: none !important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 18px !important;
    padding-right: 35px !important;

}

.modal input[type="datetime-local"] {
    /* background: #000 url('/images/calendar-white.svg') no-repeat right 10px center; */
    color: #fff;
    padding-right: 35px;
}

.request-form input[type="datetime-local"] {
    /* background: transparent url('/images/calendar-white.svg') no-repeat right 10px center !important; */
    color: #fff;
}

/* Force white colored icon for browsers that ignore background-image */
.request-form input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    opacity: 1;
    filter: invert(1);
}

select.form-control {
    appearance: none !important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 18px !important;
    padding-right: 35px !important;
}