/* Calendar Component Styles */
.calendar {
    margin-bottom: 15px;
}

.calendar-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.generate-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: #3498db;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.generate-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.ai-btn {
    background: #9b59b6;
}

.ai-btn:hover {
    background: #8e44ad;
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.4);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .calendar-controls {
        flex-direction: column;
        align-items: center;
    }

    .generate-btn {
        width: 100%;
        max-width: 200px;
    }

    .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .day-slot {
        padding: 15px 10px;
        min-height: 80px;
    }

    .day-slot h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .day-slot p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .day-slot {
        padding: 12px 8px;
        min-height: 70px;
    }

    .day-slot h3 {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }

    .day-slot p {
        font-size: 0.8rem;
    }
}

.day-slot {
    padding: 15px;
    border: 2px dashed #bdc3c7;
    border-radius: 12px;
    min-height: 140px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.day-slot:hover {
    border-color: #3498db;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.day-slot.current-day {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.day-slot.current-day:hover {
    border-color: #c0392b;
    background: linear-gradient(135deg, #ffeaa7 0%, #e17055 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(231, 76, 60, 0.4);
}

.day-slot h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-slot p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    line-height: 1.4;
}

.day-slot-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.day-slot-buttons button {
    width: 100%;
}
