.calendar-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, transparent 100%);
}

.calendar-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.calendar-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 2rem;
}

.calendar-section {
    padding: 2rem 0 6rem;
}

.meeting-info {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(79, 70, 229, 0.1);
    height: fit-content;
}

.meeting-info h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.meeting-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

.meeting-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.meeting-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.meeting-item h4 {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.meeting-item p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

.meeting-item ul {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    padding-left: 1rem;
}

.meeting-item li {
    margin-bottom: 0.5rem;
}

.calendar-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(79, 70, 229, 0.1);
    margin-bottom: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-header h3 {
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

.nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.calendar-day {
    background: var(--card-bg);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-weight: 500;
}

.calendar-day:hover {
    background: rgba(79, 70, 229, 0.1);
}

.calendar-day.available {
    background: var(--card-bg);
    color: var(--text-color);
}

.calendar-day.available:hover {
    background: var(--primary-color);
    color: white;
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
}

.calendar-day.disabled {
    background: rgba(100, 100, 100, 0.1);
    color: rgba(100, 100, 100, 0.5);
    cursor: not-allowed;
}

.calendar-day.other-month {
    opacity: 0.3;
}

.day-header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    cursor: default;
}

.day-header:hover {
    background: var(--primary-color);
    color: white;
}

.time-slots {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.time-slots h4 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.time-slot {
    background: var(--background-color);
    border: 2px solid rgba(79, 70, 229, 0.2);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--primary-color);
    background: rgba(79, 70, 229, 0.1);
}

.time-slot.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.time-slot.booked {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: rgba(239, 68, 68, 0.7);
    cursor: not-allowed;
}

.booking-summary {
    background: rgba(79, 70, 229, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.booking-summary h6 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.booking-summary p {
    margin: 0.25rem 0;
    color: var(--text-color);
}

.success-details {
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.success-details ul {
    margin: 0.5rem 0 0 1rem;
}

.success-details li {
    margin-bottom: 0.5rem;
}

/* Modal Styling */
.modal-content {
    background: var(--card-bg);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: 20px;
}

.modal-header {
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

.modal-title {
    color: var(--text-color);
    font-weight: 600;
}

.modal-body {
    color: var(--text-color);
}

.form-label {
    color: var(--text-color);
    font-weight: 500;
}

.form-control {
    background: var(--background-color);
    border: 1px solid rgba(79, 70, 229, 0.2);
    color: var(--text-color);
    border-radius: 10px;
}

.form-control:focus {
    background: var(--background-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendar-title {
        font-size: 2rem;
    }
    
    .calendar-container,
    .meeting-info,
    .time-slots {
        padding: 1.5rem;
    }
    
    .calendar-grid {
        gap: 0.5px;
    }
    
    .calendar-day {
        min-height: 40px;
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .time-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }
    
    .time-slot {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}