.glass-panel {
    background: rgba(18, 19, 26, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-gradient {
    background: linear-gradient(0deg, #12131a 0%, rgba(18, 19, 26, 0) 50%, rgba(18, 19, 26, 0.8) 100%);
}

.red-glow {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
}

.glass-surface {
    background: rgba(18, 19, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.red-glow-hover:hover {
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

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

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #ef4444;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 6px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0d0e15;
}

::-webkit-scrollbar-thumb {
    background: #33343c;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ef4444;
}

.glass-card {
    background: rgba(30, 31, 38, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.05);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.status-delivered {
    color: #4ade80;
}

.status-processing {
    color: #facc15;
}

.status-shipped {
    color: #60a5fa;
}

.status-cancelled {
    color: #f87171;
}