body {
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

.glass-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.65));
    border-radius: 2rem;
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(20px);
}

.input-field {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.8);
    padding: 0.95rem 1rem;
    color: #e2e8f0;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.input-field:focus {
    border-color: rgba(34, 211, 238, 0.7);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
    transform: translateY(-1px);
}

.btn-primary,
.btn-secondary,
.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    padding: 0.9rem 1.2rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #22d3ee, #14b8a6);
    color: #082f49;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(34, 211, 238, 0.25);
}

.btn-secondary,
.nav-link {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
}

.btn-secondary:hover,
.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.metric-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem;
}

.metric-card span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #94a3b8;
}

.metric-card strong {
    display: block;
    margin-top: 0.65rem;
    font-size: 2rem;
    color: white;
}

.badge-status {
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.12);
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #67e8f9;
}

.toast {
    min-width: 280px;
    max-width: 340px;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.92);
    padding: 1rem 1.1rem;
    color: white;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.4);
}
