body {
    color: #000;
    overflow-x: hidden;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.card {
    padding: 30px 40px;
    margin-top: 60px;
    margin-bottom: 60px;
    border: none !important;
    box-shadow: 0 6px 12px 0 rgba(0,0,0,0.2);
}
.blue-text {
    color: #00BCD4;
    font-size: 1.25rem; /* Tama�o de fuente m�s grande */
}

.form-control-label {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    cursor: pointer;
}

input, textarea, button, select {
    padding: 8px 15px;
    border-radius: 5px !important;
    margin: 5px 0px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    font-size: 18px !important;
    font-weight: 300;
}
input:focus, textarea:focus, select:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #00BCD4;
    outline-width: 0;
    font-weight: 400;
}
.btn-block {
    text-transform: uppercase;
    font-size: 15px !important;
    font-weight: 400;
    height: 43px;
    cursor: pointer;
}
.btn-block:hover {
    color: #fff !important;
}
button:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0;
}
.form-card {
    border: 2px solid #00BCD4; /* Borde azul */
    border-radius: 10px; /* Bordes redondeados */
    padding: 20px; /* Espaciado interno */
    margin-top: 20px; /* Margen superior */
}
.center-button {
    display: flex;
    justify-content: center; /* Centrar el bot�n */
    margin-top: 20px; /* Margen superior */
}
.warning {
    color: #ff0000;
    font-size: 0.9rem;
    margin-top: 5px;
}

.file-upload-container {
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.file-upload-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-upload-input {
    display: none;
}

.file-upload-button {
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.file-upload-button:hover {
    background-color: #45a049;
}

.file-format-info {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
    font-style: italic;
}

.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 5px;
    background: #e9ecef;
    color: #495057;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #ced4da;
    vertical-align: middle;
}

/* Tooltip */
.tooltip {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
    margin-top: 5px;
    padding: 10px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.4;
}

.tooltip.show {
    display: block;
}

.close-tooltip {
    position: absolute;
    right: 5px;
    top: 3px;
    cursor: pointer;
    font-size: 14px;
    color: #6c757d;
    z-index: 2; /* Asegura que esté por encima del contenido */
    padding: 2px 5px; /* Área de click más grande */
    background: rgba(255,255,255,0.5); /* Fondo semitransparente */
    border-radius: 3px;
}

.close-tooltip:hover {
    color: #495057;
    background: rgba(0,0,0,0.05);
}

#TableUsers_wrapper {
    width: 100%;
    overflow: auto;
}

#TableUsers {
    width: 100% !important;
    table-layout: auto; /* Cambiado de 'fixed' a 'auto' para mejor ajuste */
}

#TableUsers th, #TableUsers td {
    white-space: normal !important; /* Permite saltos de línea */
    word-wrap: break-word; /* Rompe palabras largas */
    vertical-align: top; /* Alinea el contenido en la parte superior */
    padding: 8px 12px; /* Añade espacio interno */
}

#TableUsers tr {
    height: auto !important; /* Altura automática */
}

.dt-buttons .btn {
    margin-right: 5px;
    margin-bottom: 5px;
}

.dataTables_wrapper .dataTables_info {
    clear: none;
    float: left;
    padding-top: 0.755em;
}

#TableKit td, #TableKit th {
word-break: break-all; /* Rompe palabras largas */
white-space: normal !important; /* Permite múltiples líneas */
}

#TableKit td.centered {
    text-align: center !important;
}

.btn-volver {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #f0f0f0; /* Fondo gris claro */
    color: #333; /* Texto oscuro */
    border: none;
    border-radius: 50px; /* Bordes redondeados */
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra suave */
    display: flex;
    align-items: center;
    gap: 8px; /* Espacio entre ícono y texto */
}

.btn-volver:hover {
    background-color: #e0e0e0; /* Gris más oscuro al pasar el mouse */
    transform: translateY(-2px); /* Efecto de levitación */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-volver i {
    font-size: 18px; /* Tamaño del ícono */
}