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

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.glass-card {
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045)),
        rgba(15, 23, 42, 0.62);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(24px);
    border-radius: 28px;
}

.input-glass {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.07);
    padding: 12px 14px;
    color: #f8fafc;
    outline: none;
    transition: 180ms ease;
}

.input-glass::placeholder {
    color: rgba(203, 213, 225, 0.55);
}

.input-glass:focus {
    border-color: rgba(147, 197, 253, 0.55);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.input-glass option {
    background: #0f172a;
    color: #f8fafc;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #cbd5e1;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    color: #020617;
    padding: 12px 16px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
    box-shadow: 0 14px 36px rgba(248, 250, 252, 0.16);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 44px rgba(248, 250, 252, 0.22);
}

.btn-primary:active {
    transform: translateY(0);
    opacity: 0.88;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    padding: 12px 14px;
    color: #cbd5e1;
    font-size: 14px;
    transition: 180ms ease;
}

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

.sidebar-link-active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.stat-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
        rgba(255,255,255,0.045);
    padding: 22px;
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}

.stat-label {
    font-size: 13px;
    color: #94a3b8;
}

.stat-value {
    margin-top: 8px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.stat-icon {
    height: 34px;
    width: 34px;
    color: rgba(255,255,255,0.74);
}

table {
    border-collapse: collapse;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.04);
}

::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.28);
}
