/* Core Design System Variables */
:root {
    --bg-dark: #0a0505;
    --bg-sidebar: rgba(18, 10, 10, 0.75);
    --bg-card: rgba(30, 16, 16, 0.45);
    --border-color: rgba(255, 71, 71, 0.12);
    
    --primary: #ff3c00;
    --primary-glow: rgba(255, 60, 0, 0.4);
    
    --magenta: #ff0055;
    --magenta-glow: rgba(255, 0, 85, 0.4);
    
    --cyan: #ff7700;
    --cyan-glow: rgba(255, 119, 0, 0.4);
    
    --purple: #990022;
    --purple-glow: rgba(153, 0, 34, 0.4);
    
    --green: #00ff87;
    --green-glow: rgba(0, 255, 135, 0.4);
    
    --red: #ff073a;
    --red-glow: rgba(255, 7, 58, 0.4);
    
    --text-primary: #ffffff;
    --text-secondary: #c9baba;
    --text-muted: #735959;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Background Gradients Glows */
.glow-bg-1, .glow-bg-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.25;
}

.glow-bg-1 {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.glow-bg-2 {
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, var(--magenta) 0%, transparent 70%);
}

/* Layout App Container */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    width: 280px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    z-index: 10;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--magenta) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
}

.brand-icon i {
    font-size: 1.5rem;
    color: white;
}

.brand-text h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fff, #b9bce2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.sidebar-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-nav li {
    border-radius: 12px;
    transition: all var(--transition-speed) ease;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
}

.sidebar-nav li a i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Sidebar Nav States */
.sidebar-nav li:hover, .sidebar-nav li.active {
    background: rgba(255, 255, 255, 0.03);
}

.sidebar-nav li.active a {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.sidebar-nav li.active {
    box-shadow: inset 4px 0 0 var(--primary);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 15px var(--green); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Main Content Area */
.main-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    overflow-y: auto;
    max-height: 100vh;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    gap: 2rem;
}

.header-title h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.header-title p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Quick Token Box */
.quick-token-box {
    display: flex;
    gap: 0.75rem;
    width: 450px;
}

/* Form Controls & Inputs */
.input-glow {
    background: rgba(10, 12, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    padding: 0.8rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    transition: all var(--transition-speed) ease;
}

.input-glow:focus {
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
    background: rgba(18, 10, 10, 0.9);
}

.textarea-box {
    min-height: 100px;
    resize: vertical;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-speed) ease;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
}

.btn-danger {
    background: linear-gradient(135deg, var(--red) 0%, #b30006 100%);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 7, 58, 0.4);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-neon-glow:hover {
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Cards & Grid Systems */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.text-secondary {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Pane & Navigation Show/Hide */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn var(--transition-speed) ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Results & Badges */
.results-container {
    margin-top: 2rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.border-cyan {
    border-color: rgba(0, 242, 254, 0.2);
}

.border-cyan:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

.border-magenta {
    border-color: rgba(243, 85, 136, 0.2);
}

.border-magenta:hover {
    border-color: var(--magenta);
    box-shadow: 0 0 20px rgba(243, 85, 136, 0.15);
}

.details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.details-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.75rem;
}

.details-list li strong {
    color: var(--text-secondary);
    font-weight: 500;
}

.badge {
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bg-cyan { background: rgba(0, 242, 254, 0.15); color: var(--cyan); border: 1px solid rgba(0, 242, 254, 0.3); }
.bg-purple { background: rgba(127, 0, 255, 0.15); color: #c38eff; border: 1px solid rgba(127, 0, 255, 0.3); }
.bg-green { background: rgba(0, 255, 135, 0.15); color: var(--green); border: 1px solid rgba(0, 255, 135, 0.3); }

.highlight {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
}

.highlight-alt {
    color: var(--text-primary);
    font-weight: 500;
}

/* Platform Connection Lists */
.platform-list-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.platform-column h4 {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.platform-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.platform-badges li {
    padding: 0.8rem 1.2rem;
    background: rgba(79, 172, 254, 0.1);
    color: var(--primary);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.platform-badges.available li {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    border-color: var(--border-color);
}

/* Sub Navigation Flows */
.tab-sub-nav {
    display: flex;
    gap: 0.75rem;
    background: rgba(10, 12, 30, 0.4);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.sub-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-secondary);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.sub-tab-btn.active, .sub-tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.sub-tab-btn.active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flow-pane {
    display: none;
}

.flow-pane.active {
    display: block;
    animation: fadeIn var(--transition-speed) ease;
}

.flow-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.disabled-card {
    opacity: 0.35;
    pointer-events: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.verification-choices {
    display: flex;
    gap: 0.75rem;
}

.verification-choices button {
    flex: 1;
}

.mt-3 { margin-top: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

.warning-text {
    color: var(--red);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.max-width-card {
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

/* EAT Result Box styling */
.converter-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 255, 135, 0.05);
    border: 1px solid rgba(0, 255, 135, 0.2);
    border-radius: 12px;
}

.success-header {
    color: var(--green);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.token-reveal {
    margin-top: 1.5rem;
}

.token-reveal label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.copy-box {
    display: flex;
    gap: 0.5rem;
}

.copy-box input {
    font-family: monospace;
    font-size: 0.85rem;
}

/* Timeline Login History */
.history-results-area {
    animation: fadeIn var(--transition-speed) ease;
}

.results-sub-header {
    margin-bottom: 2rem;
}

.history-timeline {
    position: relative;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--magenta) 100%);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -29px;
    top: 22px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 3px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.timeline-item:nth-child(even)::after {
    border-color: var(--magenta);
    box-shadow: 0 0 10px var(--magenta-glow);
}

.timeline-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: white;
}

.timeline-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.timeline-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    font-size: 0.95rem;
}

.timeline-body span strong {
    color: var(--text-secondary);
}

/* Owner Details styling */
.owner-card {
    max-width: 650px;
    margin: 2rem auto;
    padding: 3.5rem 3rem;
    text-align: center;
    border-radius: 30px;
    border-color: rgba(255, 255, 255, 0.12);
}

.owner-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FFE259 0%, #FFA751 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255, 167, 81, 0.3);
}

.owner-avatar i {
    font-size: 2.5rem;
    color: white;
}

.owner-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.owner-role {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 2.5rem;
}

.owner-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 500;
}

.info-item .value {
    font-weight: 600;
    font-size: 1rem;
}

.glow-link {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.glow-link:hover {
    text-shadow: 0 0 10px var(--primary-glow);
    color: white;
}

.owner-notes {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--magenta);
    padding: 1.5rem;
    border-radius: 0 16px 16px 0;
    text-align: left;
}

.owner-notes h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.owner-notes p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Toast System */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 9999;
}

.toast {
    background: rgba(18, 22, 47, 0.9);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--primary);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    min-width: 320px;
    animation: toastIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.success { border-left-color: var(--green); }
.toast.danger { border-left-color: var(--red); }
.toast.warning { border-left-color: var(--magenta); }

@keyframes toastIn {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 9, 19, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cyber-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(79, 172, 254, 0.1);
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--magenta);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px var(--primary-glow);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form inline group */
.form-inline-group {
    display: flex;
    gap: 1rem;
}

.flex-grow {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .app-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem;
    }
    
    .sidebar-brand {
        margin-bottom: 1.5rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .content-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quick-token-box {
        width: 100%;
    }
    
    .platform-list-container {
        grid-template-columns: 1fr;
    }
}

/* Authentication Screen CSS */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.login-card {
    width: 100%;
    max-width: 450px;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.login-brand {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-brand .brand-icon {
    font-size: 3rem;
    color: var(--cyan);
    text-shadow: 0 0 15px var(--cyan-glow);
    margin-bottom: 1rem;
}

.login-brand h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.login-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Sidebar user profile badge */
.user-profile-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    gap: 0.5rem;
}

.user-profile-badge i {
    color: var(--cyan);
    font-size: 1.1rem;
}

.user-profile-badge #session-username {
    font-weight: 600;
    color: var(--text-primary);
}

.user-profile-badge #session-role {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--magenta) 100%);
    color: #fff;
    margin-left: auto;
}

.select-box {
    width: 100%;
    background-color: rgba(7, 9, 19, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    outline: none;
    transition: all var(--transition-speed);
}

.select-box option {
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

/* User administration table styles */
.user-table th, .user-table td {
    padding: 12px 10px;
    font-size: 0.95rem;
}

.user-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-table tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.btn-delete-user {
    background: rgba(255, 7, 58, 0.1);
    color: var(--red);
    border: 1px solid rgba(255, 7, 58, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.btn-delete-user:hover {
    background: var(--red);
    color: #fff;
    box-shadow: 0 0 10px var(--red-glow);
}

