﻿
.btn-maroon {
    background-color: #5A0F0F;
    color: white;
}

.day-card {
    background-color: #f8f9fa;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
}

    .day-card.active {
        background-color: #5A0F0F;
        color: white;
        font-weight: bold;
    }

.slot-btn {
    min-width: 80px;
}

.btn-slot-full {
    background-color: #dc3545 !important;
    color: white;
    border: none;
}

.btn-slot-fast {
    background-color: #ffc107 !important;
    color: black;
    border: none;
}

.btn-slot-available {
    background-color: #28a745 !important;
    color: white;
    border: none;
}

.legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

@media (max-width: 768px) {
    .day-card {
        font-size: 0.8rem;
        padding: 6px;
    }

    .slot-btn {
        min-width: 70px;
        font-size: 0.8rem;
    }
}

.property-img-container {
    position: relative;
    width: 100%; /* full width of parent */
    height: 400px; /* fixed height for consistency, adjust as needed */
    overflow: hidden; /* hide any cropped parts */
    border-radius: 10px; /* optional: rounded corners */
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* keeps aspect ratio, crops excess */
    object-position: center; /* centers the image nicely */
    display: block;
}

.dropdown-menu .fa-brands,
.dropdown-menu .fas {
    color: black !important;
    font-size: 20px; /* optional, makes them a bit larger */
}


    .dropdown-menu .fa-brands:hover,
    .dropdown-menu .fas:hover {
        color: #0d6efd !important; /* Bootstrap primary color */
    }

.styled-img {
    width: 100%; /* full width of parent */
    max-width: 300px; /* optional max width for cards */
    height: 200px; /* fixed height */
    object-fit: cover; /* crops image nicely */
    border-radius: 8px; /* rounded corners for style */
}

@media (max-width: 576px) {
    .styled-img {
        max-width: 100%; /* make sure it scales on small screens */
        height: 180px; /* slightly smaller height on mobile */
    }
}

.fixed-img-container {
    width: 300px; /* fixed width */
    height: 300px; /* fixed height */
    overflow: hidden; /* ensures image doesn’t spill out */
    border-radius: 10px;
    position: relative;
}

.fixed-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* crops the image nicely */
}

@media (max-width: 576px) {
    .fixed-img-container {
        width: 100%; /* responsive full width on small screens */
        height: 180px; /* adjust height for mobile */
    }
}

/* Ensure no white space around booking panel */
@media (max-width: 767px) {
    .col-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .booking-panel {
        width: 100% !important;
        margin: 0 auto !important;
    }
}



