
        body {
            background: linear-gradient(145deg, #f0f4fa 0%, #e6ecf3 100%);
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e2b3c;
            padding: 0.75rem;
        }
        /* custom card — still using bootstrap utilities, but with extra love */
        .glass-card {
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 2.2rem;
            box-shadow: 0 25px 45px -15px rgba(0, 40, 60, 0.3);
            border: 1px solid rgba(255,255,255,0.7);
            padding: 1.2rem 1rem;
        }
        @media (min-width: 992px) {
            .glass-card { padding: 2rem 2rem; }
        }
    
        .logo a img {
            height: 44px;
            width: auto;
            filter: drop-shadow(0 4px 8px rgba(0,20,50,0.15));
        }
        h1 {
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(90deg, #b80e0e 0%, #b80e0e 50%, #701300 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        h1 i {
            background: #1f5a8e;
            color: white;
            font-size: 1.2rem;
            padding: 0.5rem;
            border-radius: 1rem;
            box-shadow: 0 8px 18px #1f5a8e60;
        }
        @media (min-width: 768px) {
            h1 { font-size: 2rem; }
            h1 i { font-size: 1.6rem; padding: 0.6rem; border-radius: 1.2rem; }
        }

        /* custom switch pill */
        .type-pill {
            background: #e7edf6;
            border: 1px solid #c5d5e8;
            border-radius: 40px;
            display: flex;
            padding: 0.3rem;
        }
        .type-btn {
            border: none;
            background: transparent;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            color: #2a4b77;
            transition: 0.15s;
            white-space: nowrap;
        }
        .type-btn i { margin-right: 5px; }
        .type-btn.active {
            background: #c40000;
            color: #fff;
            box-shadow: 0 4px 12px #c4000080;
        }
        @media (max-width: 400px) {
            .type-btn { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
        }

        .input-field-custom {
            background: white;
            border-radius: 40px;
            border: 1px solid #cbdaf0;
            box-shadow: inset 0 2px 5px #f0f5fe;
            display: flex;
            align-items: center;
            padding: 0.1rem 0.1rem 0.1rem 1rem;
        }
        .input-field-custom i {
            color: #c40000;
            font-size: 0.95rem;
            margin-right: 4px;
        }
        .input-field-custom input {
            border: none;
            background: transparent;
            padding: 0.6rem 0.5rem 0.6rem 0.1rem;
            font-weight: 500;
            width: 100%;
            outline: none;
        }
        .input-field-custom input[type="date"] { font-size: 0.85rem; }
		.bts{text-align:center !important;}
        .btn-soft {
            background: white;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1rem;
            font-weight: 600;
            color: #1e4f7a;
            box-shadow: 0 4px 12px #bacde0;
            border: 1px solid white;
            transition: 0.15s;
        }
        .btn-soft:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -10px #1f5a8e;
        }
        .btn-primary-custom {
            background: #c40000;
            color: white;
            box-shadow: 0 8px 15px -8px #a00;
            border: 1px solid #ffffff80;
        }
        .btn-primary-custom:hover { background: #a00000; color: white; }
  /* Scroll indicator - visible on all devices */
        .scroll-indicator {
            display: flex !important; /* Always visible */
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
            color: #b22222;
            font-weight: 700;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
            padding: 10px 20px;
            border-radius: 50px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 5px 20px rgba(180, 40, 40, 0.3);
            border: 1px solid #ffb5b5;
            animation: pulse 1.8s infinite ease-in-out;
            z-index: 10;
            backdrop-filter: blur(5px);
        }
        .scroll-indicator-content{text-align:center;}
        .scroll-indicator i {
            font-size: 1.4rem;
            color: #c51e1e;
            text-shadow: 0 2px 8px #ffa3a3;
        }
        
        .scroll-indicator i:first-child {
            animation: slideLeft 1.5s infinite;
        }
        
        .scroll-indicator i:last-child {
            animation: slideRight 1.5s infinite;
        }
        
        @keyframes slideLeft {
            0% { transform: translateX(0); opacity: 0.6; }
            50% { transform: translateX(-5px); opacity: 1; }
            100% { transform: translateX(0); opacity: 0.6; }
        }
        
        @keyframes slideRight {
            0% { transform: translateX(0); opacity: 0.6; }
            50% { transform: translateX(5px); opacity: 1; }
            100% { transform: translateX(0); opacity: 0.6; }
        }
        
        @keyframes pulse {
            0% { opacity: 0.9; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.02); }
            100% { opacity: 0.9; transform: scale(1); }
        }
        .table-responsive-custom {
            
            background: #ffffffd9;
            backdrop-filter: blur(4px);
            border-radius: 24px;
            padding: 0.8rem 0.2rem 0.3rem;
            border: 1px solid rgba(255,255,255,0.7);
            box-shadow: inset 0 1px 6px #fff, 0 15px 30px -16px #123a5e;
            /* horizontal scroll on overflow */
            overflow-x: auto;
            overflow-y: visible;
            /* red scrollbar (works in Chrome/Edge/Safari) */
            scrollbar-color: #c40000 #f0e9e9;      /* Firefox: thumb track */
            scrollbar-width: thin;                 /* Firefox */
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.75rem;
            min-width: 900px;
        }
        th {
            background: #c40000;
            color: white;
            font-weight: 600;
            font-size: 0.7rem;
            padding: 0.7rem 0.3rem;
            text-transform: uppercase;
            border: none;
        }
        th:first-child { border-radius: 16px 0 0 0; }
        th:last-child { border-radius: 0 16px 0 0; }
        td {
            text-align: center;
            padding: 0.7rem 0.2rem;
            border-bottom: 1px solid #dde3ec;
            background-color: rgba(255,255,255,0.5);
            font-weight: 500;
        }
        .checkbox-col { accent-color: #b40000; width: 16px; height: 16px; }
        .fy-cell { font-weight: 700; color: #10355e; }
        tfoot td {
            background: #e0e9f5;
            padding: 1rem 0.5rem;
            font-weight: 700;
            border-top: 3px solid #c40000;
        }
        tfoot td:first-child { border-radius: 0 0 0 16px; }
        tfoot td:last-child { border-radius: 0 0 16px 0; }
        #grandTotal { color: #c40000; font-size: 1.2rem; font-weight: 800; }

        /* OPC column hiding */
        .hide-opc .agmcol,
        .hide-opc .firstroccol {
            display: none;
        }

        .expert-panel {
            background: #e3eaf3d9;
            backdrop-filter: blur(4px);
            border-radius: 40px;
            border: 1px solid rgba(255,255,255,0.9);
            padding: 1rem 1.5rem;
        }
        .expert-item {
            background: white;
            border-radius: 40px;
            padding: 0.5rem 1.3rem;
            box-shadow: 0 4px 12px #bacde0;
            border: 1px solid white;
        }
        .expert-item a { text-decoration: none; color: #1f5a8e; font-weight: 600; }
        .wanty-quote {
            background: #ffffffd0;
            color: #c40000;
            font-weight: 700;
            padding: 0.4rem 1.5rem;
            border-radius: 40px;
            border: 1px solid #c40000;
            box-shadow: 0 4px 10px #c40000;
        }
        .disclaimer {
            font-weight: 600;
            color: #c40000;
            background: rgba(255,255,255,0.5);
            border-radius: 30px;
            border: 1px dashed #b6913b;
            font-size: 0.7rem;
            padding: 0.6rem;
        }
        .print-hint a { color: #c40000; font-weight: bold; }

        @media (min-width: 992px) {
            table { font-size: 0.9rem; min-width: 1100px; }
            th { font-size: 0.85rem; padding: 1rem 0.6rem; }
            td { padding: 0.9rem 0.4rem; }
            #grandTotal { font-size: 1.5rem; }
            .disclaimer { font-size: 0.85rem; }
        }
 