/* hisob.css — extracted from hisob.html (CSP cleanup) */

        :root {
            --bg: #071029;
            --card: rgba(255, 255, 255, 0.04);
            --accent: #06b6d4;
            --accent-dark: #0891b2;
            --text: #e5e7eb;
            --muted: #94a3b8;
            --radius: 16px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            text-decoration: none;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            min-height: 100vh;
            overflow-x: hidden;
            background: linear-gradient(180deg, #071029 0%, #07192b 62%);
            color: var(--text);
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
        }

        button,
        input {
            font-family: inherit;
        }

        /* HEADER COMPATIBILITY FOR PRE-LOAD */
        body {
            padding-top: var(--navbar-offset, 86px);
        }

        .admin-container {
            max-width: 980px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .admin-header {
            text-align: center;
            margin-bottom: 34px;
        }

        .admin-header h1 {
            font-size: 34px;
            margin-bottom: 10px;
            letter-spacing: -0.03em;
        }

        .admin-header p {
            color: #94a3b8;
            font-size: 15px;
        }

        .transaction-form {
            background: rgba(255, 255, 255, 0.06);
            padding: 36px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(16px);
        }

        h3 {
            color: var(--accent);
            margin: 32px 0 16px 0;
            font-size: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            padding-bottom: 10px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 18px;
        }

        .form-group label {
            font-size: 14px;
            margin-bottom: 8px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .form-group input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 14px 16px;
            border-radius: 14px;
            color: #fff;
            outline: none;
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        .form-group input::placeholder {
            color: rgba(226, 232, 240, 0.55);
        }

        .form-group input:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.14);
        }

        .submit-button {
            width: 100%;
            background: linear-gradient(90deg, var(--accent), #3b82f6);
            color: #071029;
            border: none;
            padding: 16px;
            border-radius: 16px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 24px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(6, 182, 212, 0.25);
        }

        .message-box {
            margin-top: 20px;
            padding: 20px;
            border-radius: 16px;
            background: rgba(34, 197, 94, 0.12);
            border: 1px solid rgba(34, 197, 94, 0.25);
            color: #d9f99d;
            display: none;
            line-height: 1.6;
        }

        @media (max-width: 900px) {
            .admin-container {
                margin: 28px auto;
            }

            .transaction-form {
                padding: 28px;
            }

            .nav-container {
                height: auto;
                padding-top: 0;
                gap: 12px;
            }
        }

        @media (max-width: 680px) {
            .transaction-form {
                padding: 24px;
            }

            .form-group input {
                padding: 14px;
            }

            header.site-header {
                padding: 12px 16px;
            }

            .admin-header h1 {
                font-size: 28px;
            }

            .menu-close {
                top: 16px;
                right: 16px;
            }
        }

/* ============================================================
   NAVBAR & HAMBURGER — 480px / 360px / 320px GACHA moslashuv
   (oquv.html bilan bir xil — barcha sahifalarda qatiy bir xil)
============================================================ */
@media (max-width: 480px) {
  .nav-shell { padding: 0 14px; height: 64px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { font-size: 8px; letter-spacing: 1.5px; }
  .brand-mark { width: 32px; height: 32px; font-size: 17px; border-radius: 7px; }
  .menu-toggle { width: 30px; margin-left: 8px; }
}
@media (max-width: 360px) {
  .nav-shell { padding: 0 10px; height: 60px; }
  .brand-text strong { font-size: 14px; }
  .brand-text small { font-size: 7px; letter-spacing: 1px; }
  .brand-mark { width: 30px; height: 30px; font-size: 15px; }
  .nav-actions { gap: 8px; }
  .lang-switcher { flex: 0 0 96px; width: 96px; max-width: 96px; font-size: 11px; }
  .nav-signin { display: none; }
  .menu-toggle { width: 28px; margin-left: 4px; }
}
@media (max-width: 320px) {
  .nav-shell { padding: 0 8px; height: 58px; }
  .brand-text strong { font-size: 13px; }
  .brand-mark { width: 28px; height: 28px; font-size: 14px; }
  .lang-switcher { flex: 0 0 88px; width: 88px; max-width: 88px; font-size: 10px; }
  .menu-toggle { width: 26px; }
}
