.meetings-page {
    background: #f7f8fa;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    max-width: 900px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.calendar-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    letter-spacing: -1px;
        padding-right: 15px;
}

.calendar-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-button {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    color: #555;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
}

    .icon-button:hover {
        background: #eaf1fb;
        border-color: #1976d2;
    }

.primary-button {
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

    .primary-button:hover {
        background: #1256a3;
    }

.calendar-container {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 24px;
}

.calendar-grid {
    margin-top: 8px;
}

.calendar-row {
    display: flex;
}

.calendar-cell {
    flex: 1 1 0;
    min-width: 0;
    min-height: 70px;
    border: 1px solid #f0f0f0;
    background: #fff;
    padding: 6px 4px 4px 8px;
    position: relative;
    transition: background 0.15s, box-shadow 0.15s;
    cursor: pointer;
}

    .calendar-cell:hover {
        background: #f5faff;
        box-shadow: 0 2px 8px rgba(25, 118, 210, 0.07);
    }

.header-cell {
    background: #f7f8fa;
    font-weight: 600;
    color: #888;
    border-bottom: 2px solid #e0e0e0;
    text-align: center;
    font-size: 1rem;
    padding: 10px 0;
}

.cell-faded {
    color: #c0c0c0;
    background: #fafbfc;
}

.cell-selected {
    border: 2px solid #1976d2;
    background: #eaf1fb;
    z-index: 1;
}

.day-number {
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 4px;
}

.day-meetings {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meeting-chip {
    background: #1976d2;
    color: #fff;
    border-radius: 16px;
    padding: 2px 10px;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 2px;
    box-shadow: 0 1px 4px rgba(25, 118, 210, 0.08);
    white-space: nowrap;
}

.meeting-chip.extra {
    background: #e3eafc;
    color: #1976d2;
    font-weight: 600;
}

.calendar-cell.today {
    border: 2px solid #43a047;
    background: #e8f5e9;
}

.month-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 8px;
}

.view-select {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 1rem;
    color: #555;
    margin-left: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: border 0.2s;
}

.view-select:hover {
    border-color: #1976d2;
}

.dropdown-menu {
    background: #fff;
    border: 1px solid #ccc;
    min-width: 120px;
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dropdown-item {
    width: 100%;
    padding: 8px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: #f0f0f0;
}

.dropdown-menu.show {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 100;
    background: white;
    border: 1px solid #ccc;
}

.dropdown-toggle {
    border: none;
    background: white;
}