﻿:root {
    --tol-color-primary: #1b6679;
    --tol-color-primary-light: rgba(27, 102, 121, 0.1);
    --tol-color-primary-traslucent: rgba(27, 102, 121, 0.4);
}

.tol-color-primary {
    color: var(--tol-color-primary);
}
.tol-color-primary-bg {
    color: white;
    background-color: var(--tol-color-primary);
}

.btn-outline-rounded-square {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    margin: 10px;
    background-color: transparent;
    color: var(--tol-color-primary);
    border: 1px solid var(--tol-color-primary);
    border-radius: 35px;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    text-align: center;
    padding: 15px;
    outline: none !important; /* Esta línea elimina el marco azul */
}

.btn-turno {
    width: 130px;
    height: 130px;
    padding: 5px;
    margin: 5px;
}
    /* Estado hover */
    .btn-outline-rounded-square:hover {
        background-color: white;
        color: var(--tol-color-primary);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(27, 102, 121, 0.3);
        border: 1px solid var(--tol-color-primary);
    }

    /* Estado focus (para accesibilidad) */
    .btn-outline-rounded-square:focus {
        box-shadow: 0 0 0 3px rgba(27, 102, 121, 0.3) !important;
        transform: translateY(-1px);
    }

    /* Estado active (al hacer clic) */
    .btn-outline-rounded-square:active {
        transform: translateY(1px);
    }

.btn-outline-rounded {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: transparent;
    color: var(--tol-color-primary);
    border: 1px solid var(--tol-color-primary);
    border-radius: 35px;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    outline: none !important; /* Esta línea elimina el marco azul */
}

.btn-white {
    border: 1px solid white;
    color: white;

}

.btn-xs {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    margin: 2px;
}

    /* Estado hover */
    .btn-outline-rounded:hover {
        background-color: white;
        color: var(--tol-color-primary);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(27, 102, 121, 0.3);
        border: 1px solid var(--tol-color-primary);
    }

    /* Estado focus (para accesibilidad) */
    .btn-outline-rounded:focus {
        box-shadow: 0 0 0 3px rgba(27, 102, 121, 0.3) !important;
        transform: translateY(-1px);
    }

    /* Estado active (al hacer clic) */
    .btn-outline-rounded:active {
        transform: translateY(1px);
    }

/* Estilo base para textboxes redondeados */
.rounded-textbox {
    border-radius: 35px !important; /* Bordes muy redondeados */
    padding: 10px 15px !important;
    border: 1px solid #ced4da !important;
    transition: all 0.3s ease !important;
}

    /* Focus state */
    .rounded-textbox:focus {
        border-color: #86b7fe !important;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
        outline: 0 !important;
    }

/* Tamaños alternativos */
.rounded-textbox-lg {
    padding: 12px 18px !important;
    font-size: 1.1rem !important;
}

.rounded-textbox-sm {
    padding: 6px 12px !important;
    font-size: 0.875rem !important;
    border-radius: 15px !important;
}

/* Variantes de color */
.rounded-textbox-primary {
    border-color: #0d6efd !important;
}

.rounded-textbox-success {
    border-color: #198754 !important;
}

.rounded-textbox-warning {
    border-color: #ffc107 !important;
}

/* Para controles ASP.NET */
input[type="text"].rounded-textbox,
input[type="password"].rounded-textbox,
input[type="email"].rounded-textbox,
textarea.rounded-textbox,
.asp-textbox.rounded-textbox {
    border-radius: 20px !important;
    padding: 10px 15px !important;
}

/* Estilo para el div redondeado */
.tol-rounded-container {
    border: 1px solid var(--tol-color-primary);
    border-radius: 15px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

    /* Versión con fondo sutil */
    .tol-rounded-container.primary-bg {
        background-color: var(--tol-color-primary-light);
    }

    /* Efecto hover */
    .tol-rounded-container:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    /* Versión sin borde pero con sombra */
    .tol-rounded-container.no-border {
        border: none;
        box-shadow: 0 0 0 2px var(--tol-color-primary), 0 4px 8px rgba(0, 0, 0, 0.05);
    }

.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px auto;
    max-width: 800px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    color: #7a7a7a;
    font-family: sans-serif;
}

    .step::after {
        content: '';
        position: absolute;
        top: 25px;
        right: -50%;
        width: 100%;
        height: 1px;
        background: var(--tol-color-primary-traslucent);
        z-index: -1;
    }

    .step:last-child::after {
        display: none;
    }

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
    border-radius: 50%;
    border: 1px solid var(--tol-color-primary-traslucent);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--tol-color-primary-traslucent);
    font-size:20px;
}

.step.active .step-number {
    background-color: var(--tol-color-primary);
    border-color: var(--tol-color-primary);
    color: #fff;
}

.step.active {
    color: var(--tol-color-primary);
    font-weight: 400;
}