* {
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #080b11;
    color: #e2e8f0;
    overflow: hidden;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.15s ease;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
}

.sidebar-link.active {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
}

.sidebar-link .material-symbols-outlined {
    font-size: 18px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    padding: 10px 16px;
    text-align: left;
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.03);
}

tbody td {
    padding: 14px 16px;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
}

.badge-admin {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.badge-user {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.badge-banned {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

.badge-active {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
}

.badge-sold {
    background: rgba(234, 179, 8, 0.1);
    color: #facc15;
}

.badge-common {
    background: rgba(148, 163, 184, 0.1);
    color: #94a3b8;
}

.badge-legendary {
    background: rgba(168, 85, 247, 0.1);
    color: #c084fc;
}

.badge-pending {
    background: rgba(249, 115, 22, 0.1);
    color: #fb923c;
}

.badge-rejected {
    background: rgba(220, 38, 38, 0.1);
    color: #f87171;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    border: none;
}

.btn-red {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.btn-red:hover {
    background: rgba(239, 68, 68, 0.2);
}

.btn-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.btn-blue:hover {
    background: rgba(59, 130, 246, 0.2);
}

.btn-green {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
}

.btn-green:hover {
    background: rgba(34, 197, 94, 0.2);
}

.btn-purple {
    background: rgba(168, 85, 247, 0.1);
    color: #c084fc;
}

.btn-purple:hover {
    background: rgba(168, 85, 247, 0.2);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 480px;
}

input[type="text"],
input[type="password"],
input[type="number"],
select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: border 0.15s;
}

.scrollbar::-webkit-scrollbar {
    width: 4px;
}

.scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease;
}