:root{--bg:#f5f7fb;--card:#ffffff;--glass: rgba(255,255,255,0.03);
--glass-2: rgba(255,255,255,0.02);--text:#0f1724;--muted:#6b7280;--accent:#0b6efd;--radius:12px;--maxw:1200px}*{box-sizing:border-box}html,body{height:100%;margin:0;font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;color:var(--text);background:var(--bg);-webkit-font-smoothing:antialiased}body{line-height:1.4} .container{max-width:var(--maxw);margin:28px auto;padding:20px}.header{display:flex;align-items:center;justify-content:space-between;gap:16px}.brand{align-items:center;gap:12px}.brand img{height:200px}.site-title{font-weight:700;font-size:18px}.nav{display:flex;gap:16px;align-items:center;background: #344fe2;}.nav a{padding:8px 12px;border-radius:8px;color:#fff;text-decoration:none;font-weight:600}.nav a.active{color: #fff;text-decoration: underline;}.search-bar{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}.search-bar input[type="search"], .search-bar select{padding:10px 12px;border-radius:10px;border:1px solid #e6edf3;background:#fff;min-width:160px}.search-bar button{padding:10px 16px;border-radius:10px;border:0;background:var(--accent);color:#fff;font-weight:700;cursor:pointer}.layout{display:grid;grid-template-columns:1fr 320px;gap:20px;margin-top:20px}.main{min-height:400px}.sidebar{position:relative}.card{background:var(--card);border-radius:var(--radius);padding:14px;box-shadow:0 6px 24px rgba(15,23,36,0.04);border:1px solid rgba(15,23,36,0.03)}.job-grid{display:grid;grid-template-columns:1fr;gap:12px}.job-card{position:relative;padding:14px;border-radius:10px;min-height: 232px;border:1px solid #eef2f7;background:#fff;display:flex;flex-direction:column;gap:8px}.job-meta{font-size:13px;color:var(--muted)}.job-title{font-size:16px;font-weight:700;color:var(--text)}.job-desc{color:#234;margin-top:6px}.read-more{color:var(--accent);font-weight:700;cursor:pointer;border:none;background:none;padding:0}.apply-btn{position: absolute;bottom: 10px;
    right: 14px;font-size:14px;display:inline-block;margin-top:8px;padding:7px 9px;border-radius:10px;background:#0b6efd;color:#fff;text-decoration:none;font-weight:700}.ad-box{border-radius:10px;padding:12px;border:1px dashed #dbeafe;background:#f8fbff;text-align:center;color:#0b1724}.footer{margin-top:24px;text-align:center;color:var(--muted);font-size:14px;padding:18px 10px}@media(min-width:900px){.job-grid{grid-template-columns:1fr 1fr}}@media(max-width:880px){.layout{grid-template-columns:1fr}.sidebar{order:2}}.pill{display:inline-block;padding:6px 8px;border-radius:999px;background:#f1f5f9;color:var(--muted);font-weight:600;font-size:12px}.header-bottom{display:flex;justify-content:space-between;align-items:center;margin-top:12px;gap:8px}.badge{background:#ecfdf5;color:#065f46;padding:6px 8px;border-radius:8px;font-weight:700;font-size:13px}


header{display:flex;gap:16px;align-items:center;margin-bottom:22px}
.logo{width:72px;height:72px;border-radius:16px;background:linear-gradient(135deg,var(--accent),#7dd3fc);display:flex;align-items:center;justify-content:center;color:#04263b;font-weight:800;font-size:20px;box-shadow:0 6px 24px rgba(2,6,23,0.6)}

p.lead{color:var(--muted);margin:4px 0 0;font-size:14px}


.grid{display:grid;grid-template-columns:1fr 360px;gap:20px;margin-top:18px}
.table-container {
    overflow: auto;
}

table{width:100%;border-collapse:collapse;margin-top:10px}
thead tr{background:linear-gradient(90deg, rgba(96,165,250,0.12), rgba(125,211,252,0.06));backdrop-filter: blur(6px)}
th,td{padding:10px 12px;text-align:left;border-bottom:1px dashed rgba(255,255,255,0.03);font-size:14px}
th{font-weight:700;color:#000000}
tbody tr:hover{background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01))}
.muted{color:var(--muted);font-size:14px}


.pill{display:inline-block;padding:6px 10px;border-radius:999px;background:var(--glass);color:var(--accent);font-weight:600;font-size:13px}


/* right column */
.right .box{margin-bottom:14px;padding:12px;border-radius:12px;background:linear-gradient(180deg,rgba(255,255,255,0.01), rgba(255,255,255,0.015))}
.right ul{margin:8px 0 0;padding-left:18px;color:var(--muted)}


.cta{display:flex;gap:8px;align-items:center;margin-top:12px}
.btn{background:var(--accent);color:#02243a;padding:10px 12px;border-radius:10px;font-weight:700;border:0;cursor:pointer}
.btn.ghost{background:transparent;border:1px solid rgba(255,255,255,0.04);color:var(--muted)}


footer{margin-top:20px;color:var(--muted);font-size:13px;text-align:center}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer}
.hamburger span{width:24px;height:3px;background:#000000;border-radius:2px;transition:.3s}


.mobile-nav{position:absolute;top:100%;right:0;background:#071623;border-radius:12px;overflow:hidden;max-height:0;transition:max-height .4s ease;display:flex;flex-direction:column}
.mobile-nav.open{max-height:400px}
.mobile-nav a{padding:12px 18px;border-bottom:1px solid rgba(255,255,255,0.05)}

/* mobile styles */
@media(max-width:768px){
  .nav {
    position: absolute;
        top: 100px;
        right: 0;
        background: #344fe2;
        flex-direction: column;
        width: 200px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 8px;
        text-align:center;
        z-index: 999;
  }
  .nav.open {
   max-height: 400px;
        padding: 20px;
        width: 70%;
  }
  .hamburger {display:flex;}
}

  ul { padding-left: 20px; }
    .todo { margin-top:2rem; }
    .todo-input { display:flex; gap:10px; }
    .todo-input input { flex:1; padding:10px; border:1px solid #ccc; border-radius:8px; }
    .todo-input button { background:#2563eb; color:#fff; border:none; padding:10px 15px; border-radius:8px; cursor:pointer; }
    .todo-input button:hover { background:#1d4ed8; }
    .todo-list { margin-top:1rem; }
    .task { display:flex; justify-content:space-between; align-items:center; background:#f3f4f6; padding:10px; border-radius:8px; margin-bottom:10px; }
    .task input[type="checkbox"] { margin-right:10px; }
    .task.completed label { text-decoration: line-through; color:#6b7280; }
    .task button { background:red; color:#fff; border:none; border-radius:6px; padding:5px 10px; cursor:pointer; }
    .task button:hover { background:darkred; }
    .clear-btn { margin-top:1rem; background:#6b7280; color:#fff; border:none; padding:10px 15px; border-radius:8px; cursor:pointer; }
    .clear-btn:hover { background:#4b5563; }
    @media(max-width:768px){
      .todo-input { flex-direction:column; }
    }