@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body {
    background-color: #0b0c10;
    color: #cbd5e1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(79, 70, 229, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 100% 100%, rgba(79, 70, 229, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(15, 17, 26, 1) 0%, rgba(11, 12, 16, 1) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.glass-panel {
    background: rgba(15, 17, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.input-field {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.input-field:focus, .input-field.active-select {
    outline: none;
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

.custom-scrollbar::-webkit-scrollbar { width: 8px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(79, 70, 229, 0.4); border-radius: 20px; border: 2px solid #0b0c10; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: rgba(79, 70, 229, 0.6); }
