/* =========== Community Services Listings =========== */
/* =========== Association Details Tables =========== */
.association-details-table th {
    width: 30%;
}
.association-details-table td {
    width: 70%;
    text-align: right;
}
.association-charges-table td:first-child {
    width: 50%;
    text-align: left;
}
.association-charges-table td:last-child {
    width: 50%;
    text-align: right;
}
/* =========== Association Subheading =========== */
.association-subheading {
    letter-spacing: 1.5px;
    color: #1d44b8;
}
/* =========== Association Map =========== */
.association-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;
}
