/* User Management Specific Styles */

.content-header .btn-primary {
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 500;
}

.table thead th {
    font-weight: 600;
    font-size: 0.8rem;
    color: #6c757d;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0;
}

.table tbody td {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 0.95rem;
}

.role-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.role-admin { background: #e0f2fe; color: #0369a1; }
.role-manager { background: #fef3c7; color: #92400e; }
.role-mentor { background: #f3e8ff; color: #6b21a8; }
.role-user { background: #f1f5f9; color: #475569; }

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
}

.action-btn:hover {
    background: #f8fafc;
    color: #0d6efd;
    border-color: #e2e8f0;
}

.action-btn.delete:hover {
    background: #fff1f2;
    color: #e11d48;
    border-color: #fecdd3;
}

.search-group .form-control:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.search-group .input-group-text {
    color: #64748b;
}

.filter-pills .pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-pills .pill:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.filter-pills .pill.active {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(13, 110, 253, 0.2);
}

.modal-content {
    background: #ffffff;
}

.form-label {
    margin-bottom: 0.5rem;
}

.input-group-text {
    background: #f8fafc;
    border-color: #dee2e6;
    color: #475569;
    font-size: 0.9rem;
}

.input-group .btn:not(.btn-primary):hover {
    background: #f8fafc;
}

#addMentorAccountBtn:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Status Badges */
.status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active { background: #ecfdf5; color: #059669; }
.status-disabled { background: #fff1f2; color: #e11d48; }

.action-btn.disable { color: #f59e0b; background: #fffbeb; }
.action-btn.disable:hover { background: #fef3c7; color: #d97706; }
.action-btn.enable { color: #10b981; background: #ecfdf5; }
.action-btn.enable:hover { background: #d1fae5; color: #059669; }

.action-btn.disabled { 
    opacity: 0.4; 
    cursor: not-allowed; 
    filter: grayscale(1); 
    pointer-events: none; 
}
