:root{
    --primary-color: #03a3a3;
    --secondary-color: #0E4870;
}

*,
*::before,
*::after{
    box-sizing: border-box;
}

body {
    font-family: Montserrat, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #d7e7f7;
}

/* estilos globales */
label{
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
}

input{
    display: block;
    /*width: 100%;*/
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    text-align: center;
}

.text-center{
    text-align: center;
}

select{
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}

.input-group select.form-control {
    width: 80%;
    margin: 0 auto;
    display: block;
}


main{
    padding: 2rem 0;
    flex-grow: 1;
}

/* barra de progreso */
.progressbar{
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: 2rem 0 4rem;
    flex-wrap: wrap;
}

.progressbar::before, 
.progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #dcdcdc;
    z-index: -1;
}

.progress{
    background-color: var(--secondary-color);
    width: 0%;
    transition: 0.3s;
}

.progress-step{
    width: 35px;
    height: 35px;
    background-color: #dcdcdc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-step::before{
    counter-increment: step;
    content: counter(step);
}

.progress-step::after{
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.5rem);
    font-size: 0.85rem;
    color: #666;
}

.progress-step-active{
    background-color: var(--secondary-color);
    color: #fff;
    animation: animate .5s;
}


/* Form */
.form{
    width: clamp(600px, 30%, 700px);
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    position: sticky;
}

.form-step{
    display: none;
    transform-origin: top;
    animation: animate 0.5s;
}
.form-step h1{
    text-align: center;
}

.form-step-active{
    display: block;
}

.input-group{
    align-items: center;
    align-content: center;
    justify-content: center;
}
.input-item {
    display: flex;
    flex-direction: column; /* Coloca el label arriba del input */
    align-items: center; /* Centra los label y input dentro de cada contenedor */
}

.input-group input {
    font-size: 16px;
    width: 60%;
}
@keyframes animate {
    from{
        transform: scale(1, 0);
        opacity: 0;
    }
    to{
        transform: scale(1, 1);
        opacity: 1;
    }
}


/* boton */
.btns-group{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.btn{
    padding: 0.75rem;
    display: block;
    text-decoration: none;
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    border-radius: .25rem;
    cursor: pointer;
    transition: 0.3s;
}

.width-50{
    width: 50%;
}

.ml-auto{
    margin-left: auto;
}

.btn:hover{
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--secondary-color);
}

/*seleccion de hora*/
.time-selection {
    text-align: center;
}

.time-slots {
    justify-content: center;
    margin-top: 20px;
}

.time-slot {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 5px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    color: black;
}

.time-slot.selected{
    border: none;
    background-color: #333;
    color: #ffff !important;
}

.time-slot:hover {
    color: #000 !important;
}

.form-control{
    text-align: center;
}

/*seleccion de imagenes*/
.image-selection {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    justify-content: center !important;
}

.image-item {
    text-align: center;
    cursor: pointer;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-item img {
    max-width: auto;
    max-height: auto;
    display: block;
    border-radius: 3px;
    transition: transform 0.3s ease;
    height: 350px;
    width: 300px;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.image-item p {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-item:hover p {
    opacity: 1;
}

.image-item.selected {
    border: 4px solid #03a3a3 !important;
    border-radius: 14px;
}

.confirmation-details, .final-details {
    text-align: center;
}

.final-details p {
    margin: 10px 0;
}


@media (max-width: 768px) {
    .form {
        padding: 15px;
        width: auto;
        height: auto;
        margin: 10px;
    }

    .progressbar {
        align-items: center;
    }

    .progress-step {
        margin: 10px 0;
    }

    .btns-group {
        grid-template-columns: 1fr;
        display: flex;
        justify-content: center;
    }

    .btn {
        padding: 15px;
    }
    .image-item img {
        max-width: auto;
        max-height: auto;
        display: block;
        border-radius: 3px;
        transition: transform 0.3s ease;
        height: 250px;
        width: 150px;
    }
    .custom-textarea {
        width: 80% !important; /* Ajusta el porcentaje según el ancho deseado */
        max-width: 600px; /* Define un ancho máximo */
        min-width: 100px; /* Define un ancho mínimo */
        padding: 10px; /* Espacio interior */
        border: 1px solid #ccc; /* Borde */
        border-radius: 5px; /* Bordes redondeados */
        resize: vertical; /* Permite ajustar el tamaño solo verticalmente */
        font-family: Arial, sans-serif; /* Fuente */
        font-size: 14px; /* Tamaño de la fuente */
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Sombra para dar un efecto de profundidad */
    }

    .input-group{
        align-items: center;
        align-content: center;
        justify-content: center;
    }
    .input-item {
        display: flex;
        flex-direction: column; /* Coloca el label arriba del input */
        align-items: center; /* Centra los label y input dentro de cada contenedor */
    }

    .input-group input {
        font-size: 16px;
        width: 70%;
    }
    header{
        width: 100%;
    }
    footer{
        width: 100%;
    }
}
/* Estilo para el contenedor del calendario */
#calendar {
    width: 100%;
    margin: 0 auto;
}

/* Estilo para la barra de herramientas del calendario */
.fc-toolbar {
    background: "#00FFF"; /* Color de fondo para la barra de herramientas */
    color: #fff; /* Color del texto */
    border-radius: 8px 8px 0 0;
    padding: 10px;
}

/* Estilo para el encabezado de los días */
.fc-day-header {
    background: "#00FFF"; /* Color de fondo para los encabezados de los días */
    color: #fff; /* Color del texto */
    padding: 10px;
    border-radius: 0;
}

/* Estilo para los días en los que se puede hacer clic */
.fc-day:hover {
    background: #03a3a3 ; /* Color de fondo cuando se pasa el ratón */
    cursor: pointer;
}

/* Estilo para los días deshabilitados */
.fc-day.fc-day-disabled {
    background: #e0e0e0; /* Color de fondo para los días deshabilitados */
    pointer-events: none; /* Deshabilitar el clic en estos días */
}

/* Estilo para el día actual */
.fc-day.fc-today {
    background: #FFFF00 !important; /* Amarillo para el día actual */
    color: #000 !important; /* Color del texto para el día actual */
    border: 2px solid #FFFF00 !important; /* Borde para resaltar el día actual */
}

/* Estilo para la fecha seleccionada */
.fc-day.selected {
    background: #03a3a3  !important; /* Azul cian para la fecha seleccionada */
    color: #000 !important; /* Color del texto para la fecha seleccionada */
    border: 2px solid #03a3a3  !important; /* Borde para resaltar la fecha seleccionada */
}

/* Estilo para los botones del calendario */
.fc-button {
    background-color: #4caf50; /* Color de fondo para los botones */
    border-color: #4caf50; /* Color del borde para los botones */
    color: #fff; /* Color del texto en los botones */
    margin: 5px;
}

/* Estilo para el botón al pasar el ratón */
.fc-button:hover {
    background-color: #45a049; /* Color de fondo al pasar el ratón */
    border-color: #45a049; /* Color del borde al pasar el ratón */
}

/* Estilo para el botón en el foco */
.fc-button:focus {
    box-shadow: none; /* Quitar el sombreado al enfocar */
}

/* Estilo para el botón activo */
.fc-button.fc-state-active {
    background-color: #388e3c; /* Color de fondo para el botón activo */
    border-color: #388e3c; /* Color del borde para el botón activo */
}

/* Estilo para el botón de hoy */
.fc-today {
    background-color: #c8e6c9; /* Color de fondo para el botón de hoy */
    color: #000; /* Color del texto para el botón de hoy */
}

/* Responsividad */
@media (max-width: 768px) {
    #calendar {
        max-width: 100%; /* Ajustar el calendario al contenedor en pantallas más pequeñas */
    }
    .fc-toolbar {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .fc-toolbar .fc-left,
    .fc-toolbar .fc-center,
    .fc-toolbar .fc-right {
        flex: 1 0 100%;
        text-align: center;
    }
    .fc-button-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .fc-button {
        flex: 1 0 auto;
        margin: 2px;
    }
    .fc-view-container {
        overflow-x: auto;
    }
    .fc-view {
        min-width: 300px;
    }
}

@media (max-width: 415px) {
    .fc-toolbar {
        font-size: 14px;
    }
    .fc-day-header {
        padding: 8px;
        font-size: 12px;
    }
    .fc-day {
        font-size: 12px;
    }
    .fc-button {
        font-size: 12px;
        padding: 5px;
    }
}

/* Estilos para los botones de horarios */
.btn-outline-primary {
    cursor: pointer;
    border: 1px solid var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    color: #000 !important;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
}

.btn-outline-primary.disabled {
    cursor: not-allowed;
    background-color: #ccc;
    color: #666;
    border-color: #ccc;
}

.btn-selected {
    border: 1px solid var(--primary-color) !important;
    background-color: var(--secondary-color) !important;
    color: #fff !important;
}

/* Estilos para la disposición de los botones en filas */
.time-slots-container .row {
    margin-bottom: 1rem;
}

/* Asegúrate de que el contenedor de los botones esté centrado */
.time-slots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Asegúrate de que el contenedor de los botones esté centrado */
#time-slots-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem; /* Añade padding al contenedor */
    box-sizing: border-box; /* Incluye padding y border en el cálculo del ancho total */
}

/* Estilo general para los botones */
.time-slot-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: calc(33.333% - 0.5rem); /* Tres columnas en pantallas grandes */
    box-sizing: border-box;
}

/* Estilo para el botón en estado hover */
.time-slot-button:hover {
    background-color: #03a3a3;
}

/* Ajustes para pantallas medianas */
@media (max-width: 768px) {
    .time-slot-button {
        width: 70% !important;
    }
    #time-slots-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
    }
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 480px) {
    .time-slot-button {
        width: 70% !important;
    }
    #time-slots-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
    }
}


.custom-textarea {
    width: 80%; /* Ajusta el porcentaje según el ancho deseado */
    max-width: 600px; /* Define un ancho máximo */
    min-width: 100px; /* Define un ancho mínimo */
    padding: 10px; /* Espacio interior */
    border: 1px solid #ccc; /* Borde */
    border-radius: 5px; /* Bordes redondeados */
    resize: vertical; /* Permite ajustar el tamaño solo verticalmente */
    font-family: Arial, sans-serif; /* Fuente */
    font-size: 14px; /* Tamaño de la fuente */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Sombra para dar un efecto de profundidad */
}

.custom-textarea:focus {
    border-color: #03a3a3; /* Cambia el color del borde al enfocar */
    outline: none; /* Quita el contorno por defecto */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Sombra al enfocar */
}

.btn-outline-primary {
    cursor: pointer;
    border: 1px solid #03a3a3  !important;
    background-color: #03a3a3  !important;
    color: #fff !important;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}
.btn-outline-primary:hover {
    background-color: #0E4870 !important;
    color: #fff !important;
}
.btn-outline-primary.disabled {
    cursor: not-allowed;
    background-color: #f8d7da !important; /* Color rojo claro */
    border-color: #f5c6cb !important; /* Borde rojo claro */
    color: #721c24 !important; /* Texto rojo oscuro */
    opacity: 0.6; /* Opacidad */
    pointer-events: none; /* Evita la interacción con el botón */
}
.btn-selected {
    border: 6px solid #0E4870 !important;
    background-color: #0E4870 !important;
    color: #fff !important;
}
.btn-selected-ctrl {
    border: 6px solid #03a3a3 !important;
    background-color: #03a3a3 !important;
    color: #fff !important;
}
.btn-intermediate {
    background-color: #03a3a3 !important;
    border: 2px solid #03a3a3 !important;
    color: #fff !important;
}