/* booking.css */

/* Section Styling */
.booking-section {
    min-height: 600px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.booking-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Search Bar and Filters */
.search-bar {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 1rem;
}

.filter-dropdown {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 16px;
}

/* Meeting Grid and Cards */
#meetingGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

#meetingGrid .bg-white {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    transition: box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
}

#meetingGrid .bg-white:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#meetingGrid h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

#meetingGrid .text-gray-600 {
    color: #4a4a4a;
    font-size: 0.9rem;
}

#meetingGrid .font-medium {
    font-weight: 500;
}

.schedule-button {
    display: inline-block;
    align-items: center;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.2s ease;
}

.schedule-button:hover {
    background-color: #0056b3;
}

/* No Results Message */
#noResults {
    display: none;
    font-size: 1.2rem;
    color: #999;
    text-align: center;
    margin-top: 20px;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    width: 90%;
    height: auto;
    position: relative;
    overflow: auto;
}

#closeModal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
}

#closeModal:hover {
    color: #333;
}
