body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: radial-gradient(circle at top right, #1e1b4b, #0f172a 55%, #020617);
}
.glass-card {
    background: rgba(30, 41, 59, 0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.custom-input {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.custom-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
    outline: none;
}
.sidebar-link {
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.sidebar-link:hover {
    transform: translateX(2px);
}
.status-dot {
    width: .6rem;
    height: .6rem;
    border-radius: 9999px;
    display: inline-block;
}
.custom-scrollbar::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 9999px;
}
@media (max-width: 1023px) {
    .sidebar-link:hover {
        transform: none;
    }
}
