:root {
    --text-color: #000; /* Valor por defecto, se puede sobreescribir */
    --primary-color: #006fe3;
}

.input-container {
    width: 100%;
    margin: 5px auto 10px; /* Se eliminó !important */
}

.input-card {
    background-color: rgba(211, 200, 161, 0);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 13px 5px 5px; /* Se eliminó !important y se ajustó el padding */
    border: 1px solid var(--text-color);
    border-left: 3px solid var(--primary-color); /* Sin !important */
    display: flex;
    align-items: center; /* Alineación vertical al centro */
    width: 100%;
    transition: box-shadow 0.3s ease; /* Transición más específica */
}

.input-card:focus-within {
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.4);
}

.input-icon {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.input-wrapper {
    flex-grow: 1;
    position: relative;
    min-width: 0;
}

.input-field {
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 5px 0;
    font-size: 16px;
}
.input-field:focus {
    outline: none;
}
.input-label {
    position: absolute !important;
    left: 0;
    top: 5px;
    color: #999;
    font-size: 16px;
    transition: all 0.3s;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.input-field:focus ~ .input-label,
.input-field:not(:placeholder-shown) ~ .input-label {
    top: -15px;
    left: -30px;
    font-size: 12px;
    color: #006fe3;
    font-weight: bold;
}
.input-field::placeholder {
    color: transparent;
}
.input-field:focus::placeholder {
    color: #999;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Ejemplo de cómo sobreescribir la variable desde PHP */
body { /* O un selector más específico */
    --text-color: #014c98;
}


.msg-card { /* Ahora la clase se llama msg-card */
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.msg-card:hover { /* También en los pseudo-selectores */
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.msg-card-body {
    padding: 8px;
    background: linear-gradient(135deg, #28518b, #132b4b);
    color: white;
    border-radius: inherit;
    margin-bottom: 10px;
}

.msg-card-title {
    margin-bottom: 8px;
}

.msg-card-text {
    font-size: 0.875rem;
    text-align: center;
}

.custom-modal .modal-content {
    border-radius: 15px;
    border: none;
    background: linear-gradient(145deg, #eee9dc, #e7e2d5);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); /* Sombra más suave */
}


.custom-modal .modal-header {
    background: linear-gradient(90deg, black, #0d1e37 64%, #1a4479); /* Degradado ajustado */
    padding: 0.2rem; /* Padding con unidades rem */
    border: none; /* Simplificado a border: none */
    display: flex; /* Aseguramos que sea flexbox para el centrado vertical */
    align-items: center; /* Centrado vertical */
    justify-content: space-between; /* Espacio entre el título y el botón de cierre */
}

.custom-modal .modal-title{
    color: white;
    margin:0;
    display:flex;
    align-items: center;
}

.custom-modal .modal-title i{
    margin-right: 0.6rem;
    margin-left: 0.4rem;
}

.custom-modal .modal-footer {
    border: none;
    padding: 0.3rem 0.2rem; /* Padding con unidades rem */
    display: flex; /* Para alinear los botones */
    justify-content: flex-end; /* Alinear los botones a la derecha */
}

.buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.1rem;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0.1rem;
}

.btn-icon-outline {
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    margin: 0.1rem;
    border-radius: 8px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-icon-outline:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-icon-outline:active {
    transform: translateY(0);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.btn-icon-outline i {
    margin-right: 0.75rem;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.btn-icon-outline.btn-lg:hover i {
    transform: scale(1.2) rotate(5deg);
}

.btn-outline-success {
    color: #e7e2d5;
    background: linear-gradient(145deg, #006400, #008000);
}

.btn-outline-success:hover {
    background: linear-gradient(145deg, #007000, #009000);
}

.btn-outline-danger {
    color: #e7e2d5;
    background: linear-gradient(145deg, #cc0000, #ff0000);
}

.btn-outline-danger:hover {
    background: linear-gradient(145deg, #dd0000, #ff1a1a);
}

/* Estado deshabilitado */
.btn-icon-outline:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

/* Efecto de ripple al hacer click */
.btn-icon-outline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
}

.btn-icon-outline:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

/* Mejor espaciado para el texto */
.button-text {
    line-height: 1.2;
    letter-spacing: 0.5px;
}


.select-container {
    width: 100%;
    margin: 5px auto 10px;
}

.select-card {
    background-color: rgba(211, 200, 161, 0);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 5px 5px;
    transition: all 0.3s;
    border: 1px solid #014c98;
    border-left: 3px solid #006fe3;
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.select-card:focus-within {
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.4);
}

.select-icon {
    color: #006fe3;
    font-size: 18px;
    margin-right: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

.select-wrapper {
    flex-grow: 1;
    position: relative;
    min-width: 0;
}

.select-field {
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 5px 0;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color: black;
}

 .select-field::-webkit-scrollbar {
     width: 8px;
 }

.select-field::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}

.select-field::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 8px;
}

.select-field::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.select-field:focus {
    outline: none;
}

.select-field:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    background-color: #e9ecef; /* Color de fondo para disabled */
}

.select-label {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 12px;
    color: #006fe3;
    transition: all 0.3s;
    pointer-events: none;
    font-weight: bold;
}

.select-field option {
    background-color: #e7e2d5;
    color: black;
}

.validation-icon {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    font-size: small;
}

.validation-icon.valid {
    color: darkgreen;
}

.validation-icon.invalid {
    color: darkred;
}


.little-table-container {
    background: linear-gradient(145deg, #eee9dc, #e7e2d5);
    /*background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
    border-radius: 10px;
    border: 1px solid var(--text-color);
    border-left: 3px solid var(--primary-color); /* Sin !important */
    padding: 0.375rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 123, 255, 0.1);
    overflow-x: auto;
    max-height: 200px;
    min-width: 460px;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 10px ;
    margin-top: 5px ;
}

.little-table-responsive {
    height: 200px; /* Altura fija, ajusta según tus necesidades */
    overflow-y: auto; /* Scrollbar vertical cuando sea necesario */
    scrollbar-width: thin; /* Para Firefox */
    scrollbar-color: #c8e4d3 #f0f0f0; /* Para Firefox */
}
/* Estilos para WebKit (Chrome, Safari, nuevas versiones de Edge) */
.little-table-responsive::-webkit-scrollbar {
    width: 6px;
}

.little-table-responsive::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.little-table-responsive::-webkit-scrollbar-thumb {
    background-color: #c8e4d3;
    border-radius: 4px;
    border: 2px solid #f0f0f0;
}

.little-table-responsive::-webkit-scrollbar-thumb:hover {
    background-color: #a8d4b3;
}


.little-table {
    width: 99%;
    border-collapse: separate;
    border-spacing: 0 6px;
    font-size: 12px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.little-table th:nth-child(2){
    width: auto;
}

.little-table thead {
    position: sticky;
    top: 0;
    z-index: 10; /* Asegura que el encabezado esté por encima de la tabla */
}
.little-table tbody {
    padding-top: 50px; /* Ajusta este valor según la altura del encabezado */
}

.little-table thead th {
    background-color: #4a4e69;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 3px;
    text-align: center;
    white-space: nowrap;
}
.little-table thead th:first-child:not([style*="display: none"]) {
    border-radius: 6px 0 0 6px; /* Redondea solo las esquinas izquierdas */
}

.little-table thead th:last-child:not([style*="display: none"]) {
    border-radius: 0 6px 6px 0; /* Redondea solo las esquinas derechas */
}

/* Opcional: Estilo para tablas con una sola columna */
.little-table thead th:only-child:not([style*="display: none"]) {
    border-radius: 6px; /* Redondea las cuatro esquinas */
}

.little-table tbody tr {
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}
.little-table tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    font-size: 13px;
}
.little-table tbody tr.selected {
    background-color: #e6f7ff;
    box-shadow: 0 0 0 2px #1890ff;
    font-size: 13px;
}
.little-table tbody td {
    padding: 4px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.little-table tbody td:first-child {
    border-left: 1px solid #f0f0f0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.little-table tbody td:last-child {
    border-right: 1px solid #f0f0f0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}



.carousel-item img {
    margin: 2px;
    padding-left: 3px;
    padding-right: 3px;
}

.glassy-text2 {
    position: absolute; /* Para superponer el texto a la imagen */
    bottom: 10px; /* Ajusta la posición vertical */
    left: 10px;   /* Ajusta la posición horizontal */
    background-color: rgba(255, 255, 255, 0.7); /* Fondo semi-transparente */
    padding: 10px;
    backdrop-filter: blur(5px); /* Efecto de vidrio */
    z-index: 2; /* Asegura que el texto esté por encima de la imagen */
}

.glassy-text2 p {
    color: #0b439d;
    margin: 0; /* Elimina los márgenes predeterminados del párrafo */
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 2rem; /* Ajusta el tamaño de los iconos de control */
    color: #000; /* Color de los iconos de control */
}

.carousel-control-prev, .carousel-control-next{
    opacity: 0.7;
}

.carousel-control-prev:hover, .carousel-control-next:hover{
    opacity: 1;
}



.agenda-table-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(5, 26, 103, 0.4);
    overflow: hidden;
}
.agenda-table {
    margin-bottom: 0;
    font-size: 0.7rem;
}
.agenda-table thead th {
    background-color: midnightblue;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    border: none;
}
.agenda-badge {
    font-size: 0.8rem;
    padding: 0.3em 0.5em;
}
.agenda-text-muted {
    color: #6c757d !important;
}
.agenda-row-highlight {
    transition: background-color 0.3s ease;
}
.agenda-row-highlight:hover {
    background-color: #a9c7ee;
}
.agenda-icon-space {
    margin-right: 5px;
}
.agenda-table td {
    padding: 0.15rem 0.25rem;
}

.agenda-table tr {
    height: 5px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #e9ecef;
}
.agenda-table tr:last-child {
    border-bottom: none;
}
.agenda-row-available:hover {
    background-color: #a9c7ee;
}

.modern-table-container {
    background: linear-gradient(145deg, #eee9dc, #e7e2d5);
    border-radius: 10px;
    border: 1px solid var(--text-color);
    border-left: 3px solid var(--primary-color); /* Sin !important */
    padding: 0.375rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 123, 255, 0.1);
    overflow-x: auto;
    max-height: 200px;
    min-width: 460px;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 10px ;
    margin-top: 5px ;
}
.modern-table-container:focus-within {
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.4);
}

.modern-table-responsive {
    height: 200px; /* Altura fija, ajusta según tus necesidades */
    overflow-y: auto; /* Scrollbar vertical cuando sea necesario */
    scrollbar-width: thin; /* Para Firefox */
    scrollbar-color: #c8e4d3 #f0f0f0; /* Para Firefox */
}
/* Estilos para WebKit (Chrome, Safari, nuevas versiones de Edge) */
.modern-table-responsive::-webkit-scrollbar {
    width: 8px;
}

.modern-table-responsive::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.modern-table-responsive::-webkit-scrollbar-thumb {
    background-color: #c8e4d3;
    border-radius: 4px;
    border: 2px solid #f0f0f0;
}

.modern-table-responsive::-webkit-scrollbar-thumb:hover {
    background-color: #a8d4b3;
}

.modern-table {
    width: 98%;
    border-collapse: separate;
    border-spacing: 0 6px;
    font-size: 12px;
}
.modern-table thead th {
    background-color: #4a4e69;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 3px;
    text-align: center;
    white-space: nowrap;
}
.modern-table thead th:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.modern-table thead th:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.modern-table tbody tr {
    background-color: #e0edff;
    transition: all 0.3s ease;
    cursor: pointer;
}
.modern-table tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
    font-size: 13px;
}
.modern-table tbody tr.selected {
    background-color: #e6f7ff;
    box-shadow: 0 0 0 2px #1890ff;
    font-size: 13px;
}
.modern-table tbody td {
    padding: 4px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.modern-table tbody td:first-child {
    border-left: 1px solid #f0f0f0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.modern-table tbody td:last-child {
    border-right: 1px solid #f0f0f0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.modern-table-simple {
    width: 98%;
    border-collapse: separate;
    border-spacing: 0 7px;
    font-size: 12px;
}

.modern-table-simple thead {
    position: sticky;
}

.modern-table-simple thead th {
    background-color: #4a4e69;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 5px;
    text-align: center;
    white-space: nowrap;
}

.modern-table-simple thead th:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.modern-table-simple thead th:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.modern-table-simple tbody tr {
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}
.modern-table-simple tbody tr:hover {
    background-color: #e6f7ff;
    /*box-shadow: 0 0 0 1px #1890ff;*/
    font-size: 13px;
}
.modern-table-simple tbody tr.selected {
    background-color: #e6f7ff;
    box-shadow: 0 0 0 2px #1890ff;
    font-size: 13px;
}
.modern-table-simple tbody td {
    padding: 4px;
    text-transform: uppercase;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.modern-table-simple tbody td:first-child {
    border-left: 1px solid #f0f0f0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;

}
.modern-table-simple tbody td:last-child {
    border-right: 1px solid #f0f0f0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.name-cell {
    font-weight: bold;
    color: #22223b;
    min-width: 200px;
    text-align: left;
}
.name-cell-right {
    font-weight: bold;
    color: #22223b;
    min-width: 200px;
    text-align: right;
}
.name-cell-center {
    font-weight: bold;
    color: #22223b;
    min-width: 200px;
    text-align: center;
}
.action-cell-center {
    font-weight: bold;
    color: #22223b;
    max-width: 20px;
    min-width: 2px;
    text-align: center;
}
.id-cell {
    display: none;
}
.value-cell {
    color: #4caf50;
    font-weight: 600;
    text-align: right;
}
.discount-cell {
    color: #f44336;
    font-weight: 600;
    text-align: right;
}

.dropdown .btn-light {
    background-color: #05427e;
    color: whitesmoke;
    padding: 0.05rem 0.5rem;
}

.dropdown .btn-light:hover {
    background-color: #0564c4;
    color: whitesmoke;
}

.dropdown-menu {
    min-width: 8rem;
    padding: 0.25rem 0;
    margin: 0.125rem 0 0;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.375rem;
}

.dropdown-item {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    color: #495057;
    text-transform: none;

}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-divider {
    margin: 0.25rem 0;
    border-top: 1px solid #e9ecef;
}


.alink:link {
    background-color: transparent;
    text-decoration: underline;
}

.alink:hover {
    color: #0b439d;
    background-color: transparent;
    text-decoration: underline;
}

input[type="checkbox"] {
    transform: scale(1.5);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


/*
.custom-dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); !* Sombra más suave y moderna *!
    border-radius: 6px; !* Radio de borde ligeramente menor *!
    font-size: 14px;
    padding: 6px 0; !* Espaciado vertical reducido *!
    background-color: #fff; !* Asegura fondo blanco *!
    overflow: hidden; !* Evita bordes redondeados cortados por la sombra *!
}

.custom-dropdown .dropdown-item {
    padding: 8px 16px;
    color: #374151; !* Color de texto más moderno *!
    transition: background-color 0.2s ease, color 0.2s ease; !* Transición también para el color del texto *!
    cursor: pointer; !* Indica que es un elemento interactivo *!
}

.custom-dropdown .dropdown-item:hover {
    background-color: #f8fafc; !* Gris muy claro al pasar el mouse *!
}

.custom-dropdown .dropdown-item.active,
.custom-dropdown .dropdown-item:active {
    background-color: #eef2ff; !* Azul muy claro para el item activo*!
    font-weight: 500; !* Texto un poco más grueso para el item activo *!
}

.custom-dropdown .dropdown-item:focus {
    outline: none; !* Elimina el outline por defecto al enfocar con teclado *!
    background-color: #eef2ff; !* Mismo color que el activo al enfocar con teclado *!
}

.dropdown-divider {
    border-top: 1px solid #e5e7eb; !* Color del divisor más sutil *!
    margin: 4px 0; !* Margen reducido *!
}
*/





@media (max-width: 576px) {

    .modern-table-simple thead {
        display: none; /* Oculta el encabezado en pantallas pequeñas */
    }
    .modern-table-simple tbody td {
        display: block; /* Muestra las celdas como bloques */
        width: 100%;
        box-sizing: border-box; /* Incluye el padding y el border en el ancho */
        text-align: left;
        border: none;
        border-bottom: 1px solid #eee;
    }
    .modern-table-simple tbody tr {
        border: 1px solid #eee;
        margin-bottom: 10px;
        display: block;
    }

    .modern-table-simple tbody td:before {
        content: attr(data-label); /* Muestra el nombre de la columna como etiqueta */
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }

    .input-card {
        padding: 10px;
    }
    .input-icon {
        font-size: 18px;
        margin-right: 10px;
    }
    .input-field, .input-label {
        font-size: 14px;
    }
}


.content-adaptive-container {
    min-width: 480px;
    /*max-width: 576px;*/
    width: 100%;
    margin: 0 auto;
    border: 1px solid #0b439d; /* Borde delgado usando un color de Bootstrap */
    border-radius: 0.25rem; /* Esquinas ligeramente redondeadas */
    overflow: hidden; /* Para que los botones laterales no sobresalgan */
}
.side-column {
    width: 60px;
}
.center-column {
    /*min-width: 400px; !* 320px - (2 * 40px) *!*/
    width: 100%;
    /*width: calc(100% - 80px); !* 576px - (2 * 40px) *!*/
    /*max-width: 496px; !* 576px - (2 * 40px) *!*/
}
.mb-navbar {
    background: linear-gradient(135deg, #ffffff 0%, #e6e3da 100%);
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom-right-radius: 10%; /* Hace el contenedor circular */
    border-bottom-left-radius: 10%; /* Hace el contenedor circular */
}
.mb-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.mb-navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mb-navbar-brand {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
}
.mb-navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.mb-navbar-toggle-icon {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23000000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.mb-navbar-menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.mb-navbar-item {
    margin-left: 1rem;
}
.mb-navbar-link {
    color: rgb(1, 22, 43) !important;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}
.mb-navbar-link:hover, .mb-navbar-link.active {
    color: #001054 !important;
}
.mb-navbar-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #01162b;
    transition: all 0.3s ease;
}
.mb-navbar-link:hover::after, .mb-navbar-link.active::after {
    width: 100%;
    left: 0;
}
.mb-navbar-link img {
    margin-right: 0.5rem;
    width: 25px;
    height: 25px;
}
.mb-close-menu {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #000000;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
@media (max-width: 991.98px) {
    .mb-navbar-toggle {
        display: block;
    }
    .mb-navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 75%;
        height: 100%;
        background: linear-gradient(135deg, #ffffff 0%, #e6e3da 100%);
        padding: 1rem 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        transform: translateX(-100%);
        transition: all 0.3s ease-in-out;
        z-index: 1001;
        overflow-y: hidden;
    }
    .mb-navbar-menu.show {
        transform: translateX(0);
    }
    .mb-close-menu {
        display: block;
    }
    .mb-navbar-item {
        margin: 0.5rem 0;
    }
}

.img-wrapper {
    width: 100%;
    max-width: 150px; /* Ancho máximo del contenedor */
    aspect-ratio: 1 / 1; /* Mantiene la proporción cuadrada */
    margin: 0 auto; /* Centra el contenedor horizontalmente */
}
.img-wrapper2 {
    width: 100%;
    max-width: 80px; /* Ancho máximo del contenedor */
    aspect-ratio: 1 / 1; /* Mantiene la proporción cuadrada */
    margin: 0 auto; /* Centra el contenedor horizontalmente */
}

.img-container {
    width: 100%;
    height: 100%; /* Asegura que el contenedor ocupe todo el espacio del wrapper */
    position: relative;
    overflow: hidden;
    border-radius: 50%; /* Hace el contenedor circular */
    border: 1px solid midnightblue; /* Añade un borde azul */
    box-sizing: border-box; /* Incluye el borde en el tamaño total */
    box-shadow: steelblue 0 0 10px;
}
.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra todo el espacio sin deformarse */
}

.logo-wrapper {
    width: 100%;
    max-width: 150px; /* Ancho máximo del contenedor */
    margin: 0 auto; /* Centra el contenedor horizontalmente */
    max-height: 300px;
}

.logo-container {
    width: 100%;
    aspect-ratio: 16 / 9; /* Proporciona una relación de aspecto 16:9 */
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* Esquinas redondeadas */
    border: 1px solid midnightblue; /* Añade un borde azul */
    box-sizing: border-box; /* Incluye el borde en el tamaño total */
    box-shadow: steelblue 0 0 10px;
}
.logo-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra todo el espacio sin deformarse */
}

.card-radio {
    margin-bottom: 10px;
}
.card-radio input[type="radio"] {
    display: none;
}
.card-radio label {
    display: block;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.card-radio input[type="radio"]:checked + label {
    background-color: #e7f1ff;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}
.card-radio label:hover {
    background-color: #e9ecef;
}
.card-radio .card-title {
    margin-bottom: 5px;
    font-weight: bold;
    color: #0d6efd;
}
.card-radio .card-text {
    color: #6c757d;
    font-size: 0.9rem;
}


.carousel-indicators {
    bottom: -30px !important;
}

.carousel-indicators [data-bs-target] {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background-color: #0a1234 !important;
    border: none !important;
    margin: 0 5px !important;
}

.carousel-indicators .active {
    width: 10px !important;
    height: 10px !important;
    margin: 0 5px !important;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.carousel-control-prev {
    left: 10px !important;
}

.carousel-control-next {
    right: 10px !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}
.gradient-custom {
    /* fallback for old browsers */
    background: #f6d365;

    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right bottom, rgba(246, 211, 101, 1), rgba(253, 160, 133, 1));

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right bottom, rgba(246, 211, 101, 1), rgba(253, 160, 133, 1))
}

.rating-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 520px;
    min-width: 320px;
    margin: 0 auto;
    padding: 5px;
}
.rating-score,
.rating-stars,
.rating-count {
    flex: 1;
    text-align: center;
}
.rating-score,
.rating-count {
    color: #0b439d;
    font-weight: bold;
}
.rating-stars {
    flex: 2;
    border-left: 2px solid #b6b4b4;
    border-right: 2px solid #b6b4b4;
}
.star-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.star-list li {
    margin: 0 2px;
}
.star {
    color: goldenrod;
    font-size: 12px;
}
.star-half {
    position: relative;
}
.star-half:after {
    content: '\f089';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: goldenrod;
}
@media (max-width: 320px) {
    .rating-container {
        flex-direction: column;
    }
    .rating-stars {
        border-left: none;
        border-right: none;
        border-top: 2px solid #b6b4b4;
        border-bottom: 2px solid #b6b4b4;
        margin: 5px 0;
        padding: 5px 0;
    }
    .star {
        font-size: 11px;
    }
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*grid-template-columns: 1fr;*/
    gap: 5px;
    padding: 5px;
    min-width: 320px;
}

.grid-container-appointment {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 5px;
    min-width: 320px;
}

.grid-item {
    background-color: #e8e6e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 10px;
    min-height: 50px; /* Añadido para dar altura visible a las celdas vacías */
}

.inner-grid {
    display: grid;
    grid-template-rows: auto auto auto auto;
    gap: 5px;
}

.inner-grid-item {
    background-color: #e9ecef;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
    border: 1px solid #ced4da;
    padding: 5px;
    border-radius: 5px;
    min-height: 20px;
}

.custom-label {
    font-size: 15px;
    font-weight: bold;
}

@media (max-width: 760px) {
    .grid-container {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .custom-label {
        font-size: 11px;
        font-weight: bolder;
    }
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
}

.col-30a, .col-70a, .col-30b  {
    padding: 5px;
    box-sizing: border-box;
}

.col-30a {
    width: 35%;
    border-right: 2px solid #b6b4b4;
}
.col-30b {
    width: 35%;
}

.col-70a {
    width: 65%;
}

@media (max-width: 760px) {
    .custom-row {
        flex-direction: column;
    }

    .col-30a, .col-70a {
        width: 100%;
    }

    .col-30a {
        border-right: none;
        border-bottom: 1px solid #b6b4b4;
        margin-bottom: 5px;
        padding-bottom: 5px;
    }
}

.social-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 520px;
    min-width: 320px;
    margin: 0 auto;
    padding: 5px;
    font-size: 14px;
    overflow-x: auto;
    white-space: nowrap;
    height: 60px; /* Altura fija del componente */
    box-sizing: border-box;
}

.social-item {
    flex: 1;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-width: 50px;
    padding: 5px;
}
.social-icon {
    font-size: 1.5em;
    margin-bottom: 5px;
}
.social-count {
    font-weight: bold;
    font-size: 0.9em;
}
.social-name {
    font-size: 0.8em;
    color: #666;
}
@media (max-width: 768px) {
    .social-container {
        justify-content: flex-start;
    }
    .social-item {
        flex: 0 0 auto;
    }
}
@media (max-width: 480px) {
    .social-container {
        height: 60px; /* Altura ligeramente reducida para pantallas muy pequeñas */
    }
    .social-icon {
        font-size: 1.2em;
    }
    .social-count {
        font-size: 0.8em;
    }
    .social-name {
        font-size: 0.7em;
    }
}


.switch {
    position: relative;
    display: inline-block;
    /*width: 40px;*/
    /*height: 20px;*/
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.switch-label {
    margin-left: 2px;
    font-size: 12px;
    color: #555 !important;
}

.btn-pulse {
    position: relative;
    /*width: 100px;*/
    /*height: 100px;*/
}
.btn-pulse::before,
.btn-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 123, 255, 0.4); /* Color del pulso (azul semitransparente) */
    border-radius: 50%;
    animation: pulse2 2s infinite;
}
.btn-pulse::after {
    animation-delay: 1s;
}
@keyframes pulse2 {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


.pulse {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 35px 35px 35px 35px #7dcf7d !important;
    }
    70% {
        box-shadow: 35px 35px 35px 35px #9def9d !important;
    }
    100% {
        box-shadow: 35px 35px 35px 35px #d5f8d5 !important;
    }
}

.input-button {
    background-color: rgba(7, 17, 54, 0.4);
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 14px;
    /*transition: background-color 0.3s;*/
    border: transparent;
    outline: none;
}
.input-button-text {
    background-color: rgba(7, 17, 54, 0.4);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
    /*transition: background-color 0.3s;*/
    border: transparent;
    outline: none;
}
.button-container {
    width: 100%;
    margin: 0 auto 10px;
    margin-top: 5px !important;
}
.button-card {
    background-color: rgba(211,200,161,0);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.container-fluid-profile {
    min-width: 320px;
}

.col-30r {
    width: 35% !important;
    border-right: 2px solid #b6b4b4 !important;
}
.col-70r {
    width: 65% !important;
}
.col-100r {
    width: 100% !important;
}
.date-input::-webkit-calendar-picker-indicator {
    color: #28a745;
    cursor: pointer;
}

.simple-table-container {
    background-color: white;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /*overflow-y: hidden;*/
    overflow-x: auto;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    position: static;
}

.simple-table-container:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.simple-table-responsive {
    min-height: 15vh;
    overflow-y: auto;
    border-radius: 15px !important;
}

.simple-table {
    margin-bottom: 0;
}

.simple-table thead th {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    font-size: 0.65rem;
    text-transform: none !important;
    /*letter-spacing: 1px;*/
    border: none;
    height: 30px !important;
    padding: 2px;
    /*position: sticky;*/
    top: 0;
    z-index: 1;
}

.simple-table tbody td {
    vertical-align: middle;
    border: none;
    font-size: 0.9rem;
    padding: 5px;
    height: 30px !important;
    transition: all 0.3s ease;
}

.simple-table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.03) !important;
}

.simple-table tbody tr {
    transition: all 0.3s ease;
}


.btn-green2 {
    background-color: transparent !important;
    color: darkgreen !important;
    border: none !important;
    transition: color 0.3s ease !important;
    padding: 0.05rem 0.05rem !important;
}
.btn-green2:hover {
    color: forestgreen !important;
}

.btn-orange {
    background-color: transparent !important;
    color: #553d7c !important;
    border: none !important;
    transition: color 0.3s ease !important;
    padding: 0.05rem 0.05rem !important;
}
.btn-orange:hover {
    color: #5e72e4 !important;
}
.btn-agendar {
    background-color: transparent !important;
    color: orangered !important;
    border: none !important;
    transition: color 0.3s ease !important;
    padding: 0.05rem 0.05rem !important;
}
.btn-agendar:hover {
    color: orange !important;
}
.btn-delete {
    background-color: transparent  !important;
    color: darkred !important;
    border: none !important;
    transition: color 0.3s ease !important;
    padding: 0.05rem 0.05rem !important;
}
.btn-delete:hover {
    color: red !important;
}
.btn-action {
    background-color: transparent !important;
    border: none !important;
    color: #4a90e2 !important;
    padding: 0.05rem 0.05rem !important;
    font-size: 1.1rem !important;
    transition: color 0.3s ease !important;
}
.btn-action:hover {
    color: #0f448c !important;
}

.simple-table tbody tr:hover {
    background-color: rgba(52, 152, 219, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translateY(-2px);
    z-index: 2;
    position: relative;
}

.table-badge {
    /*font-weight: 500;*/
    font-size: smaller !important;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.table-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.table-color-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.table-color-circle:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.simple-table tbody tr {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Estilos para scrollbar personalizado */
.simple-table-responsive::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.simple-table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.simple-table-responsive::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

.simple-table-responsive::-webkit-scrollbar-thumb:hover {
    background: #2ecc71;
}

@media (max-width: 768px) {
    .simple-table-responsive {
        max-height: 80vh;
    }

    .simple-table thead th, .simple-table tbody td {
        font-size: 0.8rem;
        padding: 10px;
    }
}
.schedule-table-container {
    background-color: white;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.schedule-table-responsive {
    border-radius: 15px !important;
}

.schedule-table {
    margin-bottom: 0;
}

.schedule-table thead th {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2px !important;
}

.schedule-table tbody td,
.schedule-table tbody th {
    height: 20px !important; /* Minimal height for body cells */
    font-size: 0.9rem;
    padding: 2px !important; /* Minimal padding */
    line-height: 2; /* Tighter line height */
}
@media (max-width: 768px) {
    .schedule-table thead th,
    .schedule-table tbody td,
    .schedule-table tbody th {
        font-size: 0.8rem;
        padding: 1px !important;
        height: 15px !important; /* Even smaller for mobile */
    }
}
.custom-button {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    min-height: 50px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-button i {
    margin-right: 10px;
}
.custom-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}
.custom-button:disabled {
    background-color: #6c757d;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.65;
    box-shadow: none;
}
.custom-button:disabled::before {
    display: none;
}
.btn-appointment {
    background-color: #da4100;
    color: white;
    border: none;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
.btn-appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #ff6a31;
    transition: width 0.3s ease;
    z-index: -1;
}
.btn-appointment:hover::before {
    width: 100%;
    border-radius: 5px;
}

.btn-green {
    background-color: #0b2e13;
    color: white;
    border: none;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
.btn-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #3f623f;
    transition: width 0.3s ease;
    z-index: -1;
}
.btn-green:hover:not(:disabled)::before {
    width: 100%;
    border-radius: 5px;
}
.btn-blue {
    background-color: midnightblue;
    color: white;
    border: none;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
.btn-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: steelblue;
    transition: width 0.3s ease;
    z-index: -1;
}
.btn-blue:hover::before {
    width: 100%;
    border-radius: 5px;
}

.custom-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /*min-height: 100vh;*/
    padding: 5px !important;
    margin: 5px;
    width: 100%;
    overflow: visible !important;
}
.custom-card {
    width: 100%;
    overflow: visible !important;
    border-radius: 10px;
    box-shadow: 6px 6px 13px #a3b1c6, -6px -6px 13px #a1a1a6;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(145deg, #fcf8f0,  #e7e2d5);
}
.custom-card:hover {
    box-shadow: 8px 8px 15px #a3b1c6, -8px -8px 15px #a1a1a6;
}
.custom-card-header {
    background: linear-gradient(45deg, #0d1e37, #1a4479);
    color: white;
    font-weight: bold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: none;
    padding: 0.3rem;
    padding-left: 0.5rem !important;
}
.custom-card-body {
    padding: 2px;
}
.custom-card-footer {
    background-color: transparent;
    padding: 0.01rem 1rem 1rem 1rem;
}
.custom-card-footer p {
    font-size: 0.9rem;
}
.custom-card-footer i {
    color: midnightblue;
}
.custom-card-title {
    font-size: 1rem;
    margin-bottom: 0;
}
@media (max-width: 760px) {
    .custom-card-body {
        padding: 1.5rem;
    }
    .custom-card-title {
        font-size: 0.8rem;
    }
    .custom-card-footer p {
        font-size: 0.7rem;
    }
}


.pin-container {
    min-width: 320px;
}
.pin-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #e9ecef;
    border-radius: 15px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    overflow: hidden;
}
.pin-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.pin-row:first-child {
    border-bottom: 2px solid #b6b4b4;
}
.pin-column {
    flex: 1;
    text-align: center;
    padding: 0 8px;
}
.pin-column:not(:last-child) {
    border-right: 2px solid #b6b4b4;
}
.pin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 40px;
    color: #101f57;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: #bbe1c4 0 0 2px;
    background-color: #d5d7ec; /* Single color for all badges */
    font-size: 11px;
    font-weight: bold;
}
.pin i {
    margin-right: 8px;
    font-size: 1.2em;
    color: darkgreen;
}
.pin:hover {
    transform: translateY(-2px);
    box-shadow: #bbe1c4 0 1px 2px;
    background-color: #bfc3e6; /* Darker shade on hover */
}
.pin:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
@media (max-width: 480px) {
    .pin-row {
        flex-direction: column;
        padding: 10px;
    }
    .pin-column {
        width: 100%;
        padding: 10px 0;
        border-right: none !important;
    }
    .pin-column:not(:last-child) {
        border-bottom: 2px solid #e0e0e0;
    }
    .pin {
        padding: 8px 12px;
        font-size: 8px;
    }
    .pin i {
        font-size: 1em; /* Slightly reduced icon size */
    }        }

.fixed-height-row {
    height: 50px; /* Altura fija, ajusta según tus necesidades */
    overflow-y: auto; /* Scrollbar vertical cuando sea necesario */
    scrollbar-width: thin; /* Para Firefox */
    scrollbar-color: #c8e4d3 #f0f0f0; /* Para Firefox */

}

.fixed-height-row::-webkit-scrollbar {
    width: 8px;
}

.fixed-height-row::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.fixed-height-row::-webkit-scrollbar-thumb {
    background-color: #c8e4d3;
    border-radius: 4px;
    border: 2px solid #f0f0f0;
}

.fixed-height-row::-webkit-scrollbar-thumb:hover {
    background-color: #a8d4b3;
}

.badge-container {
    height: 10px; /* Altura fija, ajusta según tus necesidades */
    display: flex;
    flex-wrap: wrap;
}

.badge-container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
}


.greenBadge {
    margin: 4px;
    padding: 1px 4px !important;
    background-color: #c8e4d3;
    color: #101f57 !important;
    border-radius: 5px !important;
    font-size: smaller;
    font-weight: bold;
    box-shadow: #0b2e13 0 0 2px;
}

.blueBadge {
    margin: 4px;
    padding: 1px 4px !important;
    background-color: #d5d7ec;
    color: #101f57 !important;
    border-radius: 3px !important;
    font-size: smaller;
    font-weight: bold;
    box-shadow: #0b2e13 0 0 2px;
}

@media (max-width: 720px) {
    .greenBadge {
        font-size: 10px;
    }
    .blueBadge {
        font-size: 10px;
    }
}

.round-image-container {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */

    width: 150px; /* Ancho deseado del contenedor */
    height: 150px; /* Alto deseado del contenedor */
    border-radius: 50%; /* Hace que el contenedor sea redondo */
    overflow: hidden; /* Oculta cualquier parte de la imagen que se extienda más allá del borde redondo */
}

.round-image {
    max-width: 100%; /* Asegura que la imagen no exceda el ancho del contenedor */
    max-height: 100%; /* Asegura que la imagen no exceda la altura del contenedor */
    width: 100%; /* La imagen ocupará todo el ancho del contenedor */
    height: auto; /* Altura automática para mantener la proporción original de la imagen */
}

.contenedor {
    width: 100%; /* Ancho de ejemplo */
    height: 100%; /* Alto de ejemplo */
    border: 1px solid #000; /* Solo para visualizar el contenedor */
    display: contents;
}

.div-extender {
    flex: 1;
    /*background-color: lightblue; !* Color de fondo de ejemplo *!*/
}

.tooltip2 {
    cursor: help;
    position: relative;
    display: inline-block;
}

.tooltip2 .tooltiptext2 {
    visibility: hidden;
    font-size: xx-small !important;

    padding: 5px;
    position: absolute;
    left: 0;
    bottom: 100%;
    white-space: nowrap;
    border-radius: 5px;

    background-color: #000;
    color: #fff;
    text-align: left; /* Alinea el texto a la izquierda */
    /*z-index: 1;*/
}

.tooltip2:hover .tooltiptext2 {
    visibility: visible;
}

.tooltip2 .tooltiptext2 ul {
    list-style-type: disc !important; /* Elimina los puntos de la lista */
    list-style-position: inside;
    padding: 0;
}

.tooltip2 .tooltiptext2 li {
    margin-bottom: 2px; /* Añade espacio entre los elementos de la lista */
}

#slick {
    display: none;
}

#slick.slick-initialized {
    display: block;
}

#slick .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

#slick .slick-slide {
    padding-right: 15px;
    padding-left: 15px;
}

#slick .slick-slide:focus {
    outline: none;
    cursor: grab;
}

#slick .slick-arrow {
    position: absolute;
    width: 15px;
    height: 49px;
    top: 50%;
    background-color: transparent;
    border: none;
    -webkit-appearance: none;
    padding: 0;
    z-index: 100;
    transform: translateY(-50%);
    overflow: hidden;
    text-indent: 1000px;
}

#slick .slick-arrow:focus {
    outline: none;
}

#slick .slick-arrow:hover {
    cursor: pointer;
}

#slick .slick-prev {
    left: -30px;
    background-image: url('https://i.imgur.com/ao7qeXi.png');
}

#slick .slick-next {
    right: -30px;
    background-image: url('https://i.imgur.com/AhkEkP6.png');
}

.fade-in-image {
    animation: fadeIn 5s;
    -webkit-animation: fadeIn 5s;
    -moz-animation: fadeIn 5s;
    -o-animation: fadeIn 5s;
    -ms-animation: fadeIn 5s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-o-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}


.la-square-jelly-box,
.glassy-text {
    font-family: courier, serif;
    font-size: large;
    text-align: center;
    padding: 5px 5px;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .glassy-text {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        background-color: rgba(255, 255, 255, 0.4);
    }
}

.slide-images{
    position: relative;
}

.glassy-text2 {
    position: absolute;
    top: 90%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: courier, serif;
    font-size: large;
    text-align: center;
    padding: 5px 5px;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .glassy-text2 {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        background-color: rgba(255, 255, 255, 0.4);
    }
}
.la-square-jelly-box > div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.la-square-jelly-box {
    display: block;
    font-size: 0;
    color: #fff;
}
.la-square-jelly-box.la-dark {
    color: #333;
}
.la-square-jelly-box > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}
.la-square-jelly-box {
    width: 32px;
    height: 32px;
}
.la-square-jelly-box > div:nth-child(1),
.la-square-jelly-box > div:nth-child(2) {
    position: absolute;
    left: 0;
    width: 100%;
}
.la-square-jelly-box > div:nth-child(1) {
    top: -25%;
    z-index: 1;
    height: 100%;
    border-radius: 10%;
    -webkit-animation: square-jelly-box-animate .6s -.1s linear infinite;
    -moz-animation: square-jelly-box-animate .6s -.1s linear infinite;
    -o-animation: square-jelly-box-animate .6s -.1s linear infinite;
    animation: square-jelly-box-animate .6s -.1s linear infinite;
}
.la-square-jelly-box > div:nth-child(2) {
    bottom: -9%;
    height: 10%;
    background: #000;
    border-radius: 50%;
    opacity: .2;
    -webkit-animation: square-jelly-box-shadow .6s -.1s linear infinite;
    -moz-animation: square-jelly-box-shadow .6s -.1s linear infinite;
    -o-animation: square-jelly-box-shadow .6s -.1s linear infinite;
    animation: square-jelly-box-shadow .6s -.1s linear infinite;
}
.la-square-jelly-box.la-sm {
    width: 16px;
    height: 16px;
}
.la-square-jelly-box.la-2x {
    width: 64px;
    height: 64px;
}
.la-square-jelly-box.la-3x {
    width: 96px;
    height: 96px;
}
@-webkit-keyframes square-jelly-box-animate {
    17% {
        border-bottom-right-radius: 10%;
    }
    25% {
        -webkit-transform: translateY(25%) rotate(22.5deg);
        transform: translateY(25%) rotate(22.5deg);
    }
    50% {
        border-bottom-right-radius: 100%;
        -webkit-transform: translateY(50%) scale(1, .9) rotate(45deg);
        transform: translateY(50%) scale(1, .9) rotate(45deg);
    }
    75% {
        -webkit-transform: translateY(25%) rotate(67.5deg);
        transform: translateY(25%) rotate(67.5deg);
    }
    100% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }
}
@-moz-keyframes square-jelly-box-animate {
    17% {
        border-bottom-right-radius: 10%;
    }
    25% {
        -moz-transform: translateY(25%) rotate(22.5deg);
        transform: translateY(25%) rotate(22.5deg);
    }
    50% {
        border-bottom-right-radius: 100%;
        -moz-transform: translateY(50%) scale(1, .9) rotate(45deg);
        transform: translateY(50%) scale(1, .9) rotate(45deg);
    }
    75% {
        -moz-transform: translateY(25%) rotate(67.5deg);
        transform: translateY(25%) rotate(67.5deg);
    }
    100% {
        -moz-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }
}
@-o-keyframes square-jelly-box-animate {
    17% {
        border-bottom-right-radius: 10%;
    }
    25% {
        -o-transform: translateY(25%) rotate(22.5deg);
        transform: translateY(25%) rotate(22.5deg);
    }
    50% {
        border-bottom-right-radius: 100%;
        -o-transform: translateY(50%) scale(1, .9) rotate(45deg);
        transform: translateY(50%) scale(1, .9) rotate(45deg);
    }
    75% {
        -o-transform: translateY(25%) rotate(67.5deg);
        transform: translateY(25%) rotate(67.5deg);
    }
    100% {
        -o-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }
}
@keyframes square-jelly-box-animate {
    17% {
        border-bottom-right-radius: 10%;
    }
    25% {
        -webkit-transform: translateY(25%) rotate(22.5deg);
        -moz-transform: translateY(25%) rotate(22.5deg);
        -o-transform: translateY(25%) rotate(22.5deg);
        transform: translateY(25%) rotate(22.5deg);
    }
    50% {
        border-bottom-right-radius: 100%;
        -webkit-transform: translateY(50%) scale(1, .9) rotate(45deg);
        -moz-transform: translateY(50%) scale(1, .9) rotate(45deg);
        -o-transform: translateY(50%) scale(1, .9) rotate(45deg);
        transform: translateY(50%) scale(1, .9) rotate(45deg);
    }
    75% {
        -webkit-transform: translateY(25%) rotate(67.5deg);
        -moz-transform: translateY(25%) rotate(67.5deg);
        -o-transform: translateY(25%) rotate(67.5deg);
        transform: translateY(25%) rotate(67.5deg);
    }
    100% {
        -webkit-transform: translateY(0) rotate(90deg);
        -moz-transform: translateY(0) rotate(90deg);
        -o-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }
}
@-webkit-keyframes square-jelly-box-shadow {
    50% {
        -webkit-transform: scale(1.25, 1);
        transform: scale(1.25, 1);
    }
}
@-moz-keyframes square-jelly-box-shadow {
    50% {
        -moz-transform: scale(1.25, 1);
        transform: scale(1.25, 1);
    }
}
@-o-keyframes square-jelly-box-shadow {
    50% {
        -o-transform: scale(1.25, 1);
        transform: scale(1.25, 1);
    }
}
@keyframes square-jelly-box-shadow {
    50% {
        -webkit-transform: scale(1.25, 1);
        -moz-transform: scale(1.25, 1);
        -o-transform: scale(1.25, 1);
        transform: scale(1.25, 1);
    }
}
.iconBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: help;
}
.iconBadge-success {
    background-color: #4caf50;
    color: white;
}
.iconBadge-danger {
    background-color: #f44336;
    color: white;
}
.iconBadge::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.iconBadge:hover::after {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 320px) {
    .modern-table {
        font-size: 11px;
    }
    .modern-table thead th,
    .modern-table tbody td {
        padding: 6px;
    }
    .name-cell {
        min-width: 150px;
    }
}



.textColor {
    color: #2a5a94;
}

#verticalbar {
    height: 40px;
    width: 1px;
    background: #97a2b0;
}

.changeWidth {
    width: 36px;
}

.iconChange:after {
    content: "";
    display: block;
    margin: auto;
    height: 3px;
    width: 0px;
    background: transparent;
    transition: all 0.5s ease;
}

.iconChange:hover::after {
    width: 100%;
    background: #0d6efd;
}

.iconHeight {
    height: 26px;
    width: 26px;
}

.iconChange:hover a {
    color: #0d6efd;
}

.iconChange img {
    transition: all 500ms;
}

.iconChange:hover img {
    transform: translateX(-180%);
    transform-origin: right;
    transition: transform 500ms ease-in-out;
}

.smallFont {
    font-size: 15px;
}
#secondNav {
    background: #ffffffd4
}

@media screen and (max-width: 1400px) {
    .brand {
        font-size: 18px;
    }

    .brandSubHeading {
        font-size: 12px;
    }

    .iconHeight {
        height: 30px;
        width: 30px;
    }

    .searchImg {
        top: 12px;
        right: 250px;
    }
}

/* body */
#bodyContent {
    min-height: calc(100vh - 77px)
}

.maintextColor {
    color: #1C4980;
}

.horizontalBar {
    max-width: 200px;
    height: 2px;
    background: #F2C034;
}

.extraSmallFont.active {
    border-bottom: 2px solid #6195f5
}

.pricing-content{position:relative;}
.pricing_design{
    position: relative;
    margin: 0px 15px;
}
.pricing_design .single-pricing{
    background:#554c86;
    padding: 60px 40px;
    border-radius:30px;
    box-shadow: 0 10px 40px -10px rgba(0,64,128,.2);
    position: relative;
    z-index: 1;
}
.pricing_design .single-pricing:before{
    content: "";
    background-color: #fff;
    width: 100%;
    height: 100%;
    border-radius: 18px 18px 190px 18px;
    border: 1px solid #eee;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.price-head{}
.price-head h2 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 600;
}
.price-head h1 {
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 5px;
}
.price-head span{}

.single-pricing ul{list-style:none;margin-top: 30px;}
.single-pricing ul li {
    line-height: 36px;
}
.single-pricing ul li i {
    background: #554c86;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 30px;
    font-size: 11px;
    text-align: center;
    line-height: 20px;
    margin-right: 6px;
}
.pricing-price{}

.price_btn {
    background: #554c86;
    padding: 10px 30px;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    border-radius: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.price_btn:hover{background:#0aa1d6;}
a{
    text-decoration:none;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 45px;
    font-weight: 600;
    margin-top: 0;
    position: relative;
    text-transform: capitalize;
}

.dashboard-container {
    padding: 1rem; /* Eliminar el relleno para que las tarjetas ocupen todo el espacio disponible */
}

.dashboard-row { /* Nuevo nombre */
    display: flex;
    flex-wrap: nowrap; /* Evita que las tarjetas se acomoden en varias filas */
    justify-content: flex-start; /* Alinea las tarjetas hacia la izquierda */
    overflow-x: auto; /* Permite desplazamiento horizontal si las tarjetas exceden el ancho */
}

.dashboard-col { /* Nuevo nombre */
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0.1rem;
}

.dashboard-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
    margin: 0.5rem; /* Un pequeño margen entre tarjetas */
}
.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.card-body {
    padding: 1rem;
}
.card-icon {
    font-size: 1.5rem;
    color: #444;
    background: transparent;
    padding: 0.7rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-title {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.stats-text {
    font-size: 0.7rem;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.stats-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: end;
}
.icon-appointments { color: #3498db; }
.icon-finances { color: #2ecc71; }
.icon-verification { color: #e74c3c; }
.icon-stats { color: #9b59b6; }

/* Variaciones de color de la tarjeta usando atributos de datos */
[data-card-color="1"] { background: linear-gradient(135deg, #f0f4ff 0%, #e6edff 100%); }
[data-card-color="2"] { background: linear-gradient(135deg, #f2f6ff 0%, #e8f1ff 100%); }
[data-card-color="3"] { background: linear-gradient(135deg, #f4f7ff 0%, #eaf2ff 100%); }
[data-card-color="4"] { background: linear-gradient(135deg, #f6f9ff 0%, #ecf3ff 100%); }

/* Ajustar el tamaño de las tarjetas a tamaños muy pequeños */
@media (max-width: 767.98px) { /* Dispositivos pequeños */
    .dashboard-col {
        flex: 0 0 25%; /* Asegura que las tarjetas ocupen el 25% del ancho */
        max-width: 25%;
    }
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

