/* In home.css */
.facility-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.facility-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.facility-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.facility-card h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.facility-card .description {
    color: #666;
    font-size: 1rem;
    flex-grow: 1;
}

.facility-card .price {
    font-weight: bold;
    color: #2c5282;
}

.facility-card .info-link {
    display: inline-block;
    text-decoration: none;
    color: #4299e1;
    margin-top: 0.5rem;
}

.facility-card .info-link:hover {
    text-decoration: underline;
}

.facility-card .location {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.collapsible-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.collapsible-table th,
.collapsible-table td {
    padding: 0.5rem;
    border: 1px solid #ddd;
    text-align: left;
}

.collapsible-table th {
    background-color: #f8f9fa;
}

.center-align {
    padding: 2rem;
}

.center-align h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.buttons .btn {
    background-color: #4299e1;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.buttons .btn:hover {
    background-color: #2b6cb0;
}

body {
  max-width: 1000px;
  margin: 0 auto;
}

.available-dates-container {
  text-align: center;
  margin: 20px 0;
}

.facility-name-link {
    text-decoration: none;
    color: inherit;
}

.facility-name-link:hover {
    text-decoration: underline;
    color: #007bff;
}

.facility-name-link h3 {
    margin: 10px 0;
}

.location-selector {
    margin-top: 2rem;
}

.location-selector select {
    min-width: 200px;
}