/* 
   Estilos específicos para la gestión de usuarios
   Módulo: Administración / Dashboard Usuarios
*/

.admin-header {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(26, 82, 118, 0.2);
    margin-bottom: 40px;
}

.table-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: none;
}

.table thead th {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    color: #1a5276;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 20px;
}

.table tbody td {
    padding: 20px;
    vertical-align: middle;
    border-top: 1px solid #f8f9fa;
    color: #444;
}

.btn-primary {
    background-color: #1a5276 !important;
    border-color: #1a5276 !important;
}

.btn-primary:hover {
    background-color: #14425e !important;
    border-color: #14425e !important;
}

.btn-pill {
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-input {
    border-radius: 50px;
    padding: 10px 20px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.action-btn {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

/* Utilidades Finales - Usuarios */
.admin-title { font-size: 1.8rem; }
