.facility-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.facility-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.facility-card {
    width: 200px;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.facility-card img {
    width: 100%;
    height: auto;
}

.facility-map {
    margin-top: 40px;
    padding: 20px;
}

.custom-info-window {
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-info-window img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.custom-info-window .info-header {
    padding: 10px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #e5e5e5;
}

.custom-info-window .info-header h2 {
    margin-top: 0;
    font-size: 18px;
}

.custom-info-window .info-content {
    padding: 10px;
}

.custom-info-window .info-content p {
    font-size: 12px;
    margin: 5px 0;
}

.custom-info-window a {
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 5px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row.no-gutters > .col,
.row.no-gutters > [class*="col-"] {
    padding-right: 2px;  /* Adjust this value to your preference */
    padding-left: 2px;   /* Adjust this value to your preference */
}

.tight-card {
    margin: 2px !important;  /* Adjust this value to your preference */
}

.row.tight-row > .col,
.row.tight-row > [class*="col-"] {
    padding-right: 2px;  /* Adjust this value to your preference */
    padding-left: 2px;   /* Adjust this value to your preference */
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section label {
    font-weight: bold;
}

.filter-section select {
    width: 70%;
    margin-right: 10px;
}



