/* User Directory Interface Accent Rules */
body {
    font-size: 0.98rem;
    background-color: #f6f8fa;
    color: #2d3748;
}

.card-custom {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.page-link {
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    margin: 0 3px;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-item.active .page-link {
    background-color: #3182ce !important;
    border-color: #3182ce !important;
    color: white !important;
    box-shadow: 0 4px 6px -1px rgba(49, 130, 206, 0.4);
}

.table th a {
    color: #4a5568;
    display: block;
    width: 100%;
    transition: color 0.2s;
}

.table th a:hover {
    color: #3182ce;
}

.form-select, .form-control {
    border-radius: 8px;
    border: 1px solid #cbd5e0;
}

.form-select:focus, .form-control:focus {
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

.data-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.data-value {
    color: #1a202c;
}