
.calendar-week-view {
    min-height: 500px;
}

.session-card {
    transition: all 0.2s ease;
}

.session-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.calendar-day {
    min-height: 120px;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 8px;
    transition: all 0.2s ease;
}

.calendar-day:hover {
    background-color: #f5f5f5;
}

.calendar-day.today {
    background-color: #e3f2fd;
    border: 2px solid #2196f3;
}

.period-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.period-preparation {
    background-color: #e3f2fd;
    color: #1976d2;
}

.period-competition {
    background-color: #ffebee;
    color: #d32f2f;
}

.period-transition {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.period-recovery {
    background-color: #e8f5e9;
    color: #388e3c;
}

.session-strength {
    border-left: 4px solid #f44336;
}

.session-cardio {
    border-left: 4px solid #2196f3;
}

.session-flexibility {
    border-left: 4px solid #4caf50;
}

.session-recovery {
    border-left: 4px solid #9c27b0;
}

.session-technical {
    border-left: 4px solid #ff9800;
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.calendar-cell {
    min-height: 100px;
    border: 1px solid #e9ecef;
    padding: 5px;
    vertical-align: top;
}

.calendar-cell.today {
    background-color: #fff3cd;
}

.session-mini-card {
    background-color: white;
    border-radius: 4px;
    padding: 4px 8px;
    margin-bottom: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.session-mini-card:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.session-status-planned {
    border-left: 3px solid #ffc107;
}

.session-status-completed {
    border-left: 3px solid #28a745;
}

.session-status-missed {
    border-left: 3px solid #dc3545;
}

.session-status-rescheduled {
    border-left: 3px solid #17a2b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendar-week-view {
        overflow-x: auto;
    }
    
    .calendar-day {
        min-width: 100px;
        min-height: 80px;
    }
    
    .session-card .text-sm {
        font-size: 0.75rem;
    }
}