/* =========== To Let Banner =========== */
.to-let-banner {
    width: 80%;
    margin: 40px auto 35px;
    background-color: red;
    color: #ffffff;
    text-align: center;
    font-size: 3.5em;
    font-family: Arial, sans-serif;
    padding: 20px;
    border: 1.75px double #ffffff;
    box-shadow: 0 0 0 5px red;
    border-radius: 7.5px;
    letter-spacing: 25px;
    font-weight: bold;
}
/* =========== Listing Tables =========== */
.listing-details-table th {
    width: 30%;
}
.listing-details-table td {
    width: 70%;
    text-align: right;
}
.listing-charges-table td:first-child {
    width: 50%;
    text-align: left;
}
.listing-charges-table td:last-child {
    width: 50%;
    text-align: right;
}
/* =========== Listing Subheading =========== */
.listing-subheading {
    letter-spacing: 1.5px;
    color: #1d44b8;
}
/* =========== Listing Map =========== */
.listing-map {
    border: 0;
}
/* =========== Lightbox Grid =========== */
.lightbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}
.lightbox-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 0.5px solid #ccc;
    cursor: pointer;
}
/* =========== Lightbox Overlay =========== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}
.lightbox-overlay.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 80vh;
    margin: 0 auto;
    border: 0.5px solid #fff;
}
/* =========== Close Button =========== */
.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: transparent;
    border: none;
}
