.user-table-card {
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef0f4;
}

.user-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.user-table-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.user-table-header p {
    margin: 6px 0 0;
    font-size: 14px;
    color: #6b7280;
}

.user-table-scroll {
    width: 100%;
    overflow-x: auto;
}

.tabla-usuarios-front {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    font-size: 14px;
    color: #374151;
}

.tabla-usuarios-front thead th {
    padding: 14px 18px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    border-bottom: 1px solid #eef0f4;
    cursor: pointer;
}

.tabla-usuarios-front tbody tr {
    background: #ffffff;
    transition: all 0.2s ease;
}

.tabla-usuarios-front tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.tabla-usuarios-front tbody td {
    padding: 16px 18px;
    background: #fbfcfe;
    border-top: 1px solid #f1f3f7;
    border-bottom: 1px solid #f1f3f7;
    vertical-align: middle;
}

.tabla-usuarios-front tbody td:first-child {
    border-left: 1px solid #f1f3f7;
    border-radius: 14px 0 0 14px;
}

.tabla-usuarios-front tbody td:last-child {
    border-right: 1px solid #f1f3f7;
    border-radius: 0 14px 14px 0;
}

.user-id {
    font-weight: 700;
    color: #64748b;
}

.user-role {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e8f7ef;
    color: #16834a;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

.user-role.role-administrator {
    background: #fee2e2;
    color: #b91c1c;
}

.user-role.role-familiar {
    background: #dcfce7;
    color: #15803d;
}

.user-role.role-entrenador {
    background: #dbeafe;
    color: #1d4ed8;
}

.user-role.role-atleta {
    background: #ede9fe;
    color: #6d28d9;
}

.children-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.children-list li {
    padding: 5px 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 12px;
    font-weight: 600;
}

.empty-value {
    color: #c4c4c4;
    font-weight: 600;
}

@media (max-width: 768px) {
    .user-table-card {
        padding: 16px;
        border-radius: 18px;
    }

    .tabla-usuarios-front {
        min-width: 850px;
    }

    .user-table-header h2 {
        font-size: 20px;
    }
}