/* .image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #ccc;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none;
} */
 

:root {
    --dept-cardiology-color: hsl(200, 80%, 60%); 
    --dept-neurology-color: hsl(210, 70%, 50%);
    --dept-oncology-color: hsl(30, 70%, 50%); 
    /* Define colors for all departments here */
  }
  /* Container Styles */
.meeting-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.meeting-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Search Section Styles */
.search-section {
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-form {
    width: 100%;
}

.search-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-group {
    flex: 1;
    min-width: 200px;
}

.search-input,
.search-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--text-color);
    background-color: white;
    transition: border-color 0.2s ease;
}

.search-input:focus,
.search-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.search-button {
    padding: 0.75rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.search-button:hover {
    background-color: #2980b9;
}

/* Table Header Styles */
.table-header {
    display: grid;
    grid-template-columns: 100px 200px 1fr 120px 100px 150px;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Meeting Card Styles */
.meeting-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.meeting-card:hover {
    transform: translateY(-2px);
}

.meeting-row {
    display: grid;
    grid-template-columns: 100px 200px 1fr 120px 100px 150px;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}

/* Meeting Date Styles */
.meeting-date {
    text-align: center;
}

.meeting-date .date {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    color: var(--primary-color);
}

.meeting-date .month {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Leader Info Styles */
.leader-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.leader-details h3 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--primary-color);
}

.leader-details .role {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

/* Meeting Title Cell */
.meeting-title-cell {
    font-weight: 500;
    color: var(--primary-color);
}

/* Status Styles */
.meeting-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    width: fit-content;
}

.meeting-status.completed {
    background-color: var(--success-color);
    color: white;
}

.meeting-status.upcoming {
    background-color: var(--warning-color);
    color: var(--primary-color);
}

/* Duration and Location Styles */
.meeting-duration {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 500;
}

.meeting-location {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-row {
        flex-direction: column;
    }
    
    .search-group {
        width: 100%;
    }
    
    .search-button {
        width: 100%;
    }

    .table-header {
        display: none;
    }

    .meeting-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .meeting-card {
        padding: 1rem;
    }

    .meeting-status,
    .meeting-duration,
    .meeting-location {
        text-align: left;
    }
}
