/**
 * Gamevers Ban System — Admin UI Styles
 */

.gv-banned-users-wrap {
    margin-top: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gv-banned-users-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.gv-banned-users-header .gv-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gv-banned-users-header .gv-header-left i {
    color: #ff1744;
    font-size: 24px;
}

.gv-banned-users-header h2 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.gv-banned-users-header .gv-banned-users-count {
    background: #ff1744;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.gv-banned-users-header .gv-user-search {
    min-width: 300px;
}

.gv-banned-users-table .gv-user-col {
    width: 35%;
}

.gv-banned-users-table .gv-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gv-banned-users-table .gv-user-avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.gv-banned-users-table.users tbody tr,
.gv-banned-users-table.users tbody tr:nth-child(odd) {
    background-color: transparent;
}

.gv-banned-users-table.users tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

.gv-banned-users-table.users td {
    color: #ddd;
}

.gv-banned-users-table .gv-user-details strong {
    color: #fff;
    font-weight: 600;
}

.gv-banned-users-table .gv-user-details span {
    color: #999;
}

.gv-banned-users-table .gv-status-grace {
    color: #ff9100;
    font-weight: bold;
}

.gv-banned-users-table .gv-status-banned {
    color: #ff1744;
    font-weight: bold;
}

.gv-banned-users-table .gv-ban-date {
    color: #999;
}

.gv-banned-users-empty {
    text-align: center;
    padding: 40px;
    color: #888;
}

.gv-banned-users-empty i {
    font-size: 40px;
    color: #00c853;
    margin-bottom: 15px;
    display: block;
}

.gv-banned-users-table {
    background: transparent !important;
    border: none;
    color: #fff;
}

.gv-banned-users-table th {
    color: #888 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.gv-banned-users-table tr {
    background: rgba(255,255,255,0.02);
}

.gv-banned-users-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.gv-banned-users-table td strong {
    color: #fff;
}

.gv-banned-users-table td.gv-ban-date,
.gv-banned-users-table td.gv-ban-by {
    color: #888;
}

.gv-banned-users-table td.gv-user-balance {
    color: #00c853;
    font-weight: 600;
}

.gv-banned-users-table td.gv-remaining-days.gv-expiring-soon {
    color: #ff1744 !important;
    font-weight: bold;
}

.gv-banned-users-table .button.gv-unban-user {
    background: #00c853;
    border: none;
    color: #fff !important;
    font-weight: 600;
}

.gv-banned-users-table .button.gv-convert-to-full {
    background: #ff1744;
    border: none;
    color: #fff !important;
    font-weight: 600;
    margin-left: 5px;
}

/* Specific Section Colors */
#gv-banned-users-section .gv-banned-users-header i { color: #ff1744; }
#gv-banned-users-section .gv-banned-users-count { background: #ff1744; }

#gv-grace-banned-section { margin-top: 40px; }
#gv-grace-banned-section .gv-banned-users-header i { color: #ff9100; }
#gv-grace-banned-section .gv-banned-users-count { background: #ff9100; }

/* Dashboard UI Banner Styles (If needed here) */
.gv-grace-period-banner {
    background: #ff1744;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.2);
}

.gv-grace-icon {
    font-size: 40px;
}

.gv-grace-content h3 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.gv-grace-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.gv-grace-countdown {
    margin-left: auto;
    text-align: center;
    background: rgba(0,0,0,0.2);
    padding: 10px 20px;
    border-radius: 8px;
}

.gv-grace-countdown span:first-child {
    display: block;
    font-size: 24px;
    font-weight: 800;
}

.gv-grace-countdown span:last-child {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
