        .calendar-container {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 5px;
            max-width: 100%;
            overflow-x: auto;
        }

        .calendar-day {
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1rem;
        }

        .calendar-day.disabled {
            background-color: #e0e0e0 !important;
            color: #a0a0a0 !important;
            pointer-events: none;
            cursor: not-allowed;
        }

        .calendar-day:hover {
            background: #f0f0f0;
        }

        .today-highlight {
            background-color: #fff5b1 !important; /* Amarillo claro */
            /* border-radius: 50%; */ 
            font-weight: bold;
            color: #333;
        }
        

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
            margin-bottom: 10px;
            /* background-color: gray; */
        }

        .calendar-section {
            width: 100%;
            overflow-x: auto;
        }

        @media (max-width: 576px) {
            .calendar-container {
                grid-template-columns: repeat(6, 1fr);
                gap: 5px;
            }

            .calendar-day {
                padding: 10px;
                font-size: 0.9rem;
            }
        }

        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            text-align: center;
            font-weight: bold;
            padding: 10px 0;
            background-color: #f8f9fa;
            border-bottom: 1px solid #ccc;
        }
        .calendar-weekdays div {
            padding: 5px 0;
        }


        .time-container {
            margin-top: 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .time-slot {
            padding: 10px;
            text-align: center;
            border: 1px solid #ccc;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .time-slot:hover {
            background: #f0f0f0;
        }

        .time-slot.disabled {
            background-color: #e0e0e0;
            color: #a0a0a0;
            pointer-events: none;
        }

        .no-hours-message {
            color: red;
            font-size: 14px;
            text-align: center;
            margin-top: 10px;
        }
        
        

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

        .wizard-step {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .wizard-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 2px;
            background: #ccc;
            z-index: -1;
        }

        .wizard-step.active {
            color: red;
        }

        .wizard-step.completed {
            color: #28a745;
            font-size:larger

        }



        .wizard-step .step-number {
            display: inline-block;
            width: 30px;
            height: 30px;
            line-height: 30px;
            border-radius: 50%;
            background: #ccc;
            color: #fff;
            margin-bottom: 5px;
        }

        .wizard-step.active .step-number {
            background: #465049;
        }

        .wizard-step.active .step-title {
            color: #465049;
            
        }



        .wizard-step.completed .step-number {
            background: #28a745;
        }

        .selected {
            background-color: #956146 !important;
            color: white;
            font-weight: bold;
        }

        .is-invalid {
            border: 2px solid red !important;
            background-color: #ffe6e6 !important;
        }
        
        .error-message {
            color: red;
            font-size: 14px;
            margin-top: 5px;
        }
        