*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins',sans-serif;
}
  * { user-select: none; -webkit-user-select: none; -ms-user-select: none; }
  body { -webkit-touch-callout: none; } /* long press menu disable */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root
{
    --pColor:#F15A29;
    --sColor:#002C53;
    --bgColor:#FBFBFB;
    --gColor:linear-gradient(95deg,rgba(241, 90, 41, 1) 0%, rgba(0, 44, 83, 1) 100%);
    --it:'Italiana','poppins',sans-serif;
}
.sheet.bottom-sheet
{
    overflow-x: hidden !important;
}

.btn
{
    padding: 10px 20px;
    border:none;
    border-radius: 30px;
    outline: none;
}

.btn-primary
{
 background: linear-gradient(95deg,rgba(241, 90, 41, 1) 0%, rgba(0, 44, 83, 1) 100%);
 color:#fff;
 display: flex;
 align-items: center;
 justify-content: center;
}

.btn-secondary
{
 background: linear-gradient(95deg,rgba(0, 44, 83, 1) 0%, rgba(241, 90, 41, 1) 100%);
 color:#fff;
 display: flex;
 align-items: center;
 justify-content: center;
}

/* Ensure CSS variables are available (correct :root selector) */
:root {
    --pColor:#F15A29;
    --sColor:#002C53;
    --bgColor:#FBFBFB;
    --gColor:linear-gradient(95deg,rgba(241, 90, 41, 1) 0%, rgba(0, 44, 83, 1) 100%);
    --it:'Italiana','poppins',sans-serif;
}

/* Offline banner (nice design) */
#qalin-offline-banner { position: fixed; left: 0; right: 0; top: env(safe-area-inset-top, 10px); z-index: 99999; display: none; pointer-events: none; padding: 0 8px; }
#qalin-offline-banner .banner {
  margin: 0 auto; width: fit-content; max-width: calc(100% - 20px);
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #fff; border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 10px 14px; box-shadow: 0 10px 25px rgba(0,0,0,.25);
  pointer-events: auto;
}
#qalin-offline-banner .banner .dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; box-shadow: 0 0 0 0 rgba(239,68,68,.5); animation: ping 1.6s infinite; }
#qalin-offline-banner .banner .btn { margin-left: 4px; padding: 6px 10px; border: none; border-radius: 8px; background: #2563eb; color: #fff; cursor: pointer; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(239,68,68,.6);} 70% { box-shadow: 0 0 0 10px rgba(239,68,68,0);} 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0);} }