﻿.accounts-table th {
    background-color: #f8fafc;
    color: #64748b;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.accounts-table td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #e2e8f0;
}

.acc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e7ff;
    color: #4338ca;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Status Badges */
.badge-status {
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-active {
    background-color: #dcfce7;
    color: #15803d;
}

.status-pending {
    background-color: #fef9c3;
    color: #a16207;
}

.status-blocked {
    background-color: #fee2e2;
    color: #b91c1c;
}

.btn-action {
    border: 1px solid #e2e8f0;
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}

    .btn-action:hover {
        background: #f1f5f9;
        border-color: #cbd5e0;
    }
