 /* === CALENDARIO MENSUAL MEJORADO === */

    .calendar-wrapper {
        margin-top: 20px;
    }

    .calendar-container {
        background: white;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        overflow: hidden;
        border: 1px solid #e1e5e9;
    }

    .calendar-header {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        color: white;
    }

    .day-header {
        padding: 15px 10px;
        text-align: center;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    .day-header:last-child {
        border-right: none;
    }

    .calendar-body {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        background: #ffffff;
    }

    .calendar-day {
        min-height: 100px;
        border: 1px solid #e1e5e9;
        background: white;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
        position: relative;
    }

    .calendar-day:not(.empty):not(.closed):hover {
        background: #f8f9fa;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        cursor: pointer;
    }

    .calendar-day.empty {
        background: #f8f9fa;
        border-color: #f0f0f0;
    }

    .day-number {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        padding: 10px 12px;
        line-height: 1;
    }

    .calendar-day.today {
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        border: 2px solid #2196f3;
    }

    .calendar-day.today .day-number {
        color: #1565c0;
        font-weight: 700;
    }

    .calendar-day.closed {
        background: #f5f5f5;
        color: #7f8c8d;
    }

    .calendar-day.closed:hover {
        background: #f5f5f5;
        transform: none;
        box-shadow: none;
        cursor: not-allowed;
    }

    .closed-label {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 0.75rem;
        font-weight: 700;
        color: #e74c3c;
        background: rgba(231, 76, 60, 0.1);
        padding: 6px 12px;
        border-radius: 6px;
        border: 1px solid rgba(231, 76, 60, 0.3);
    }

    .reservation-info {
        padding: 0 12px 12px 12px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .total-info {
        font-size: 0.75rem;
        color: #2c3e50;
        font-weight: 600;
    }

    .shift-info {
        display: flex;
        gap: 8px;
        margin-top: auto;
    }

    .morning, .evening {
        font-size: 0.7rem;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 600;
    }

    .morning {
        background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
        color: #f57c00;
        border: 1px solid #ffb74d;
    }

    .evening {
        background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
        color: #388e3c;
        border: 1px solid #66bb6a;
    }

    .calendar-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        margin-bottom: 10px;
    }

    .nav-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 25px;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    .nav-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    }

    #month-year {
        color: #2c3e50;
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
        text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .calendar-day {
            min-height: 80px;
        }
        
        .day-number {
            font-size: 1rem;
            padding: 8px 10px;
        }
        
        .day-header {
            padding: 12px 8px;
            font-size: 0.8rem;
        }
        
        .total-info {
            font-size: 0.7rem;
        }
        
        .morning, .evening {
            font-size: 0.65rem;
            padding: 2px 6px;
        }
        
        .closed-label {
            font-size: 0.7rem;
            padding: 4px 8px;
        }
        
        .nav-btn {
            padding: 10px 16px;
            font-size: 0.85rem;
        }
        
        .calendar-nav {
            flex-direction: column;
            gap: 15px;
        }
        
        #month-year {
            font-size: 1.2rem;
        }
    }

    @media (max-width: 480px) {
        .calendar-day {
            min-height: 70px;
        }
        
        .day-number {
            font-size: 0.9rem;
            padding: 6px 8px;
        }
        
        .day-header {
            padding: 10px 4px;
            font-size: 0.75rem;
        }
        
        .reservation-info {
            padding: 0 8px 8px 8px;
            gap: 4px;
        }
        
        .total-info {
            font-size: 0.65rem;
        }
        
        .shift-info {
            gap: 4px;
        }
        
        .morning, .evening {
            font-size: 0.6rem;
            padding: 2px 4px;
        }
        
        .closed-label {
            font-size: 0.65rem;
            padding: 3px 6px;
        }
        
        .nav-btn {
            padding: 8px 12px;
            font-size: 0.8rem;
        }
        
        #month-year {
            font-size: 1.1rem;
        }
    }