:root{
  --bg:#ffffff;
  --text:#0b0f19;
  --muted:#5b6472;
  --brand:#42A5F5;
  --brand2:#E3F2FD;  
  --link:#0b57d0;
  --border:#e6e8ee;
  --shadow: 0 14px 40px rgba(0,0,0,.10);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.45;
}

a{color:var(--link); text-decoration:none}
a:hover{text-decoration:underline}

.container{width:min(1140px, calc(100% - 32px)); margin:0 auto}

.topbar{
  position: sticky; top:0; z-index:50;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0}
.brand{display:flex; align-items:center; gap:10px; font-weight:900; color:#121212; letter-spacing:.2px}
.logo{
  width:38px;height:38px;border-radius:12px;background:#fff;
  display:grid;place-items:center;border:1px solid rgba(0,0,0,.12);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
.logo span{font-weight:900;color:#111}
.navlinks{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.navlinks a{color:#111;font-weight:700;padding:8px 10px;border-radius:12px}
.navlinks a:hover{background:rgba(255,255,255,.55);text-decoration:none}

.navright{display:flex;align-items:center;gap:10px;flex-wrap:wrap}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; background:rgba(255,255,255,.7);
  border:1px solid rgba(0,0,0,.10);
  border-radius:999px; font-weight:800; color:#111;
}



.greenz{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; background:#88E788;
  border:1px solid rgba(0,0,0,.10);
  border-radius:999px; font-weight:800; color:#111;
}



.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 14px;border-radius:14px;border:1px solid rgba(0,0,0,.14);
  background:#fff;color:#111;font-weight:900;cursor:pointer;
  transition: transform .06s ease, box-shadow .2s ease;
}
.btn:hover{box-shadow: 0 12px 26px rgba(0,0,0,.10); text-decoration:none}
.btn:active{transform: translateY(1px)}
.btn.primary{background:#111;color:#fff;border-color:#111}
.btn.soft{background:rgba(255,255,255,.55)}
.btn.danger{background:#b91c1c;color:#fff;border-color:#b91c1c}

.btn.blue{
  background:#1E40AF;   /* blue background */
  color:#fff;           /* white text */
  border-color:#1E40AF;
}


.btn.blue1{
  background:#fff;   /* blue background */
  color:#1E40AF;           /* white text */
  border-color:#1E40AF;
}

.btn.yellow{
  background:#00008B;   /* yellow background */
  color:#FFFFFF;           /* white text */
  border-color:#00008B;
}


.btn.red{
  background:#8B0000;   /* red background */
  color:#FFFFFF;           /* white text */
  border-color:#00008B;
}

.btn.green{
  background:#006400;   /* red background */
  color:#FFFFFF;           /* white text */
  border-color:#00008B;
}


.btn.google{
  background:#fff;   /* blue background */
  color:#1E40AF;           /* white text */
  border-color:#1E40AF;
  padding-right: 16px;

}

.btn.google img{
  width: 13px;
  height: 13px;
  margin-right: 14px;
}



.main{padding:18px 0 36px}

.card{
  background:#fff;border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}

.grid2{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
@media (max-width: 980px){ .grid2,.grid3{grid-template-columns:1fr} }

h1{margin: 6px 0 8px; font-size: clamp(24px, 3.1vw, 38px); line-height:1.1}
h2{margin: 0 0 10px; font-size: 20px}
p{margin:0 0 10px; color: var(--muted)}

.formRow{display:flex; flex-direction:column; gap:6px; margin:10px 0}
label{font-weight:800; color:#111}
input,select,textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:11px 12px;
  outline:none;
  font-size: 14.5px;
}
textarea{min-height:110px; resize:vertical}
input:focus,select:focus,textarea:focus{border-color:#111}

.alert{
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: #f6f7fb;
  margin: 10px 0;
  color:#111;
}
.alert.ok{background:#ecfdf5;border-color:#a7f3d0}
.alert.err{background:#fef2f2;border-color:#fecaca}

.tableWrap{overflow:auto;border:1px solid var(--border);border-radius:16px}
table{width:100%;border-collapse:collapse;min-width:820px;background:#fff}
th,td{padding:12px 12px;border-bottom:1px solid var(--border);text-align:left;vertical-align:top}
th{background:#fafafa;font-weight:900;color:#111}
.small{font-size:12.5px;color:var(--muted)}
hr{border:none;border-top:1px solid var(--border); margin:14px 0}

.footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
  font-size: 13.5px;
}
.footerGrid{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap}



.navdrop{ position:relative; display:inline-block; }
.navdrop-btn{
  background:transparent; border:0; cursor:pointer;
  font: inherit; color: inherit; padding: 8px 10px;
}
.navdrop-menu{
  display:none; position:absolute; right:0; top:100%;
  background:#fff; border:1px solid rgba(0,0,0,.08);
  border-radius:10px; min-width:160px; overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  z-index:999;
}
.navdrop-menu a{ display:block; padding:10px 12px; text-decoration:none; }
.navdrop:hover .navdrop-menu{ display:block; }


