:root{
  --bg: #020617;
  --bg-2:#020617;
  --card:#020617ee;
  --card-soft:#020617e6;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --brand:#3b82f6;
  --brand-2:#2563eb;
  --ok:#22c55e;
  --err:#ef4444;
  --warn:#f59e0b;
  --stroke:#1f2937;
  --ring: rgba(59,130,246,.45);
  --radius: 20px;
  --shadow: 0 25px 60px rgba(0,0,0,.65);
}
*{box-sizing:border-box;}
html,body{height:100%;margin:0;}
body{
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1300px 700px at 0% 0%, #1d4ed81f, transparent 70%),
    radial-gradient(900px 600px at 100% 0%, #22c55e1a, transparent 70%),
    radial-gradient(1200px 750px at 50% 120%, #6366f11a, transparent 80%),
    #020617;
}

/* ========= LOGIN ========= */
.login-body{
  display:flex;align-items:center;justify-content:center;padding:16px;
}
.login-shell{
  width:100%;max-width:960px;
  display:grid;grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  gap:22px;
  align-items:stretch;
}
@media(max-width:780px){
  .login-shell{grid-template-columns:1fr;max-width:480px;}
  .hero{display:none;}
}
.hero{
  border-radius:20px;
  padding:26px 22px;
  background:
    radial-gradient(600px 320px at 0% 0%, #38bdf81a, transparent 70%),
    linear-gradient(145deg,#020617,#020617,#020617,#020617,#020617,#111827);
  border:1px solid #1f2937;
  box-shadow:0 24px 60px rgba(0,0,0,.55);
  display:flex;flex-direction:column;justify-content:space-between;
}
.hero-header{display:flex;align-items:center;gap:12px;margin-bottom:18px;}
.logo{
  width:40px;height:40px;border-radius:14px;
  background: radial-gradient(circle at 0% 0%,#fbbf24,#f97316);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:18px;color:#111827;
  box-shadow:0 10px 30px rgba(0,0,0,.6),0 0 0 2px rgba(15,23,42,.9);
}
.hero-title-main{font-size:18px;font-weight:600;}
.hero-title-sub{font-size:13px;color:var(--muted);}
.hero-body h1{
  margin:0 0 12px;font-size:24px;
  background:linear-gradient(120deg,#e5e7eb,#bfdbfe,#a7f3d0);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero-body p{margin:0;color:var(--muted);font-size:14px;line-height:1.5;}
.hero-footer{
  margin-top:22px;
  padding:12px 14px;
  border-radius:14px;
  background:linear-gradient(135deg,#0b1120,#020617);
  border:1px solid #1f2937;
  font-size:13px;
  color:#9ca3af;
}
.hero-footer b{color:#e5e7eb;}

.login-box{
  background:#020617ee;
  border-radius:20px;
  padding:26px 24px 22px;
  border:1px solid var(--stroke);
  box-shadow:0 24px 60px rgba(0,0,0,.6);
  backdrop-filter:blur(18px);
}
.login-header{
  display:flex;justify-content:space-between;align-items:center;margin-bottom:16px;
}
.login-header-left h2{
  margin:0;
  font-size:22px;
  letter-spacing:.2px;
  color:#f9fafb;
}
.login-header-left span{
  font-size:13px;color:var(--muted);
}
.pill{
  font-size:11px;padding:4px 9px;border-radius:999px;
  border:1px solid #1f2937;background:#020617;color:#9ca3af;
}
.pill b{color:#e5e7eb;}
.field{margin-bottom:14px;}
label{
  display:block;margin-bottom:6px;
  font-size:13px;font-weight:600;color:#cbd5f5;
}
input[type="text"],input[type="password"]{
  width:100%;border-radius:12px;border:1px solid #1f2937;
  padding:11px 12px;font-size:14px;
  background:#020617;color:#e5e7eb;
  outline:none;transition:border .15s,box-shadow .15s,background .15s;
}
input::placeholder{color:#64748b;}
input:focus{
  border-color:#3b82f6;
  box-shadow:0 0 0 1px #1d4ed8,0 0 0 6px var(--ring);
  background:#020617;
}
button[type="submit"]{
  width:100%;margin-top:4px;
  border:none;border-radius:12px;
  padding:11px 14px;
  font-size:15px;font-weight:600;
  background:linear-gradient(135deg,#3b82f6,#2563eb);
  color:white;cursor:pointer;
  box-shadow:0 14px 35px rgba(37,99,235,.55);
  transition:transform .08s,box-shadow .12s,filter .12s;
}
button[type="submit"]:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 45px rgba(37,99,235,.65);
  filter:brightness(1.05);
}
button[type="submit"]:active{
  transform:translateY(0);
  box-shadow:0 12px 30px rgba(37,99,235,.5);
}
.msg-wrap{margin-top:12px;}
.msg{
  margin-bottom:8px;padding:9px 10px;border-radius:10px;
  font-size:13px;border:1px solid transparent;display:flex;gap:6px;align-items:flex-start;
}
.msg::before{content:"";display:inline-block;width:6px;height:6px;border-radius:999px;margin-top:5px;}
.success{background:rgba(22,163,74,.1);border-color:#4ade80;color:#bbf7d0;}
.success::before{background:#22c55e;}
.danger{background:rgba(248,113,113,.08);border-color:#fecaca;color:#fecaca;}
.danger::before{background:#ef4444;}
.info{background:rgba(59,130,246,.08);border-color:#bfdbfe;color:#bfdbfe;}
.info::before{background:#3b82f6;}
.tips{margin-top:14px;font-size:11.5px;color:#6b7280;line-height:1.5;}
.tips b{color:#e5e7eb;}

/* ========= MAIN LAYOUT ========= */
.main-body{
  padding: 22px 14px 26px;
}
.main-shell{
  max-width:1220px;margin:auto;
  display:grid;grid-template-columns: 240px minmax(0,1fr);gap:18px;
}
@media(max-width:960px){
  .main-shell{grid-template-columns:1fr;}
  .sidebar{order:2;}
}
.sidebar{
  background:var(--card-soft);
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
  padding:18px 16px 16px;
  display:flex;flex-direction:column;gap:14px;
  position:relative;
  overflow:hidden;
}
.sidebar::before{
  content:"";position:absolute;inset:-40%;
  background:radial-gradient(circle at 0% 0%,#22c55e12,transparent 55%);
  opacity:.9;pointer-events:none;
}
.sidebar-inner{position:relative;z-index:1;}
.app-title{
  display:flex;align-items:center;gap:10px;margin-bottom:10px;
}
.app-logo{
  width:38px;height:38px;border-radius:14px;
  background: radial-gradient(circle at 0% 0%,#fbbf24,#f97316);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:17px;color:#111827;
  box-shadow:0 10px 28px rgba(0,0,0,.7),0 0 0 2px rgba(15,23,42,.95);
}
.app-title-text{display:flex;flex-direction:column;gap:2px;}
.app-title-text b{font-size:15px;}
.app-title-text span{font-size:12px;color:var(--muted);}
.user-block{
  margin-top:8px;
  padding:10px 11px;
  border-radius:14px;
  border:1px solid #1f2937;
  background:linear-gradient(135deg,#020617,#020617,#020617,#020617,#020617,#020617);
  font-size:13px;
  display:flex;align-items:flex-start;gap:8px;
}
.user-avatar{
  width:26px;height:26px;border-radius:999px;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:700;color:#022c22;
  box-shadow:0 10px 28px rgba(0,0,0,.7);
  flex-shrink:0;
}
.user-info span{color:var(--muted);}
.pill-role{
  display:inline-flex;align-items:center;gap:6px;
  padding:3px 7px;border-radius:999px;
  border:1px solid #1f2937;
  font-size:11px;margin-top:4px;
  background:#020617;
  color:#a5b4fc;
}
.pill-role b{color:#e5e7eb;}
.nav{
  margin-top:12px;
  border-top:1px solid #111827;
  padding-top:10px;
  display:flex;flex-direction:column;gap:4px;
  font-size:13px;
}
.nav a{
  text-decoration:none;color:#cbd5f5;
  padding:7px 10px;border-radius:10px;
  display:flex;align-items:center;gap:8px;
  border:1px solid transparent;
}
.nav a span.emoji{font-size:15px;}
.nav a:hover{
  background:#020617;
  border-color:#1d4ed8;
  box-shadow:0 0 0 1px rgba(37,99,235,.6);
}
.nav .secondary{color:#a5b4fc;}
.nav-footer{
  margin-top:14px;font-size:11px;color:#6b7280;line-height:1.5;
}
.main{
  background:var(--card);
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
  padding:22px 20px 18px;
  position:relative;
  overflow:hidden;
}
.main::before{
  content:"";position:absolute;inset:-40%;
  background:radial-gradient(circle at 110% 0%,#22c55e12,transparent 60%);
  opacity:.9;pointer-events:none;
}
.main-inner{position:relative;z-index:1;}
.topbar{
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  margin-bottom:8px;
}
.title-main{display:flex;flex-direction:column;gap:5px;}
.title-main h2{
  margin:0;font-size:20px;letter-spacing:.2px;
  background: linear-gradient(120deg,#f9fafb,#bfdbfe,#a7f3d0);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.sub{color:var(--muted);font-size:13px;}
.top-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap;}

.btn{
  appearance:none;border-radius:999px;border:1px solid #1f2937;
  background:linear-gradient(145deg,#020617,#020617,#020617,#020617,#020617);
  color:#e5e7eb;
  padding:8px 13px;
  font-size:12.5px;font-weight:500;
  display:inline-flex;align-items:center;gap:6px;
  cursor:pointer;
  transition:transform .08s,box-shadow .12s,background .18s,border .18s;
  box-shadow:0 10px 25px rgba(0,0,0,.4),0 0 0 1px rgba(15,23,42,1);
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 34px rgba(0,0,0,.6),0 0 0 1px rgba(59,130,246,.8);
  border-color:#1d4ed8;
}
.btn-primary{
  background:linear-gradient(135deg,#3b82f6,#2563eb);
  border-color:#1d4ed8;
  color:#f9fafb;
}
.btn-danger{
  background:linear-gradient(135deg,#ef4444,#b91c1c);
  border-color:#7f1d1d;
  color:#fee2e2;
}
.btn-approve{
  background:#052e1b;border-color:#14532d;color:#bbf7d0;
}
.btn-approve:hover{
  border-color:#16a34a;
  box-shadow:0 0 0 1px rgba(34,197,94,.6);
  transform:translateY(-1px);
}
.btn-reject{
  background:#2a0b0b;border-color:#7f1d1d;color:#fecaca;
}
.btn-reject:hover{
  border-color:#ef4444;
  box-shadow:0 0 0 1px rgba(239,68,68,.7);
  transform:translateY(-1px);
}

.search-card{
  margin-top:12px;
  border-radius:16px;
  border:1px solid #1f2937;
  background:radial-gradient(circle at 0% 0%,#3b82f611,transparent 60%),#020617;
  padding:14px 14px 13px;
}
.search-label{
  font-size:13px;color:#cbd5e1;margin-bottom:8px;
}
.search-row{
  display:grid;grid-template-columns:minmax(0,1.2fr) auto;gap:10px;
}
@media(max-width:640px){
  .search-row{grid-template-columns:1fr;}
}
input[type="text"], select{
  width:100%;padding:11px 12px;font-size:14px;color:#e5e7eb;
  background:#020617;border:1px solid #1f2937;border-radius:12px;
  outline:none;transition:border .15s,box-shadow .15s,background .15s;
}
input[type="text"]::placeholder{color:#64748b}
input[type="text"]:focus, select:focus{
  border-color:#3b82f6;
  box-shadow:0 0 0 1px #1d4ed8,0 0 0 6px var(--ring);
  background:#020617;
}
.results-meta{margin-top:10px;font-size:13px;color:#cbd5e1;}
.results-meta b{color:#f9fafb;}
.grid-inline{
  margin-top:14px;
  display:grid;grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr);
  gap:12px;
}
@media(max-width:820px){
  .grid-inline{grid-template-columns:1fr;}
}

/* table main */
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  margin-top:14px;
  border-radius:14px;
  border:1px solid #1f2937;
  background:#020617;
  display:block;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  min-width:720px;
}
.table thead th{
  background:#020617;
  color:#93c5fd;
  text-align:left;
  font-weight:600;
  padding:9px 9px;
  font-size:12px;
  border-bottom:1px solid #1f2937;
  white-space:nowrap;
}
.table tbody td{
  padding:8px 9px;
  border-bottom:1px dashed #111827;
  color:#e5e7eb;
  font-size:13px;
  vertical-align:middle;
}
.table tbody tr:nth-child(odd){background:#020617;}
.table tbody tr:nth-child(even){background:#020617;}
.table tbody tr:hover{background:#020617ee;}
.table tbody tr:last-child td{border-bottom:none;}

.pager{
  margin-top:10px;display:flex;gap:8px;align-items:center;font-size:13px;
}
.pager a{color:#bfdbfe;text-decoration:none;padding:2px 6px;border-radius:6px;}
.pager a:hover{background:#020617;color:#ffffff;}

.msg.warn{
  background:#2b2106;border-color:#854d0e;color:#fde68a;
}
.msg.warn::before{background:#f59e0b;}
.msg.error{
  background:#2a0b0b;border-color:#7f1d1d;color:#fecaca;
}
.msg.error::before{background:#ef4444;}
.msg.success{
  background:#052e1b;border-color:#14532d;color:#a7f3d0;
}
.msg.success::before{background:#22c55e;}

.toast-single{
  position:fixed;right:16px;top:16px;z-index:9999;
  max-width:360px;padding:10px 11px;border-radius:13px;
  background:#020617;border:1px solid #1f2937;
  color:#e5e7eb;font-size:13px;box-shadow:0 18px 45px rgba(0,0,0,.75);
  display:none;
}
.toast-ok{background:#052e1b;border-color:#14532d;}
.toast-err{background:#2a0b0b;border-color:#7f1d1d;}

/* badge notification */
.badge{
  min-width:22px;height:22px;padding:0 7px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  font-weight:700;font-size:11px;color:#fff;
  background:var(--err);border:1px solid #7f1d1d;
  box-shadow:0 0 0 2px rgba(239,68,68,.35);
  transform-origin:center;margin-left:4px;
}
.badge.hide{display:none}
@keyframes bump{0%{transform:scale(1)}25%{transform:scale(1.14)}100%{transform:scale(1)}}

/* copyright badge */
.copyright-badge{
  position:fixed;
  right:12px;
  bottom:12px;
  padding:4px 8px;
  border-radius:999px;
  background:#020617a0;
  border:1px solid #4b5563;
  font-size:12px;
  font-weight:500;
  color:#9ca3af;
  box-shadow:none;
  z-index:9999;
  opacity:0.3;
  transition:
    opacity .2s,
    color .2s,
    background .2s,
    border-color .2s,
    box-shadow .2s;
}
.copyright-badge:hover{
  opacity:1;
  background:#020617dd;
  border-color:#7f1d1d;
  color:#e5e7eb;
  box-shadow:0 12px 30px rgba(0,0,0,.7);
}
@media(max-width:600px){
  .copyright-badge{
    font-size:16px;
    right:6px;
    bottom:6px;
    padding:5px 9px;
  }
}

/* ========= REQUESTS PAGE ========= */
.req-container{
  max-width:1120px;margin:auto;
}
.req-card{
  background:#020617;
  border-radius:20px;
  padding:20px 20px 18px;
  border:1px solid #111827;
  box-shadow:0 24px 60px rgba(0,0,0,.7);
}
.req-toolbar{
  display:flex;align-items:center;gap:12px;justify-content:space-between;margin-bottom:12px;flex-wrap:wrap;
}
.req-toolbar h1{
  font-size:20px;margin:0;display:flex;align-items:center;gap:8px;
}
.req-toolbar .sub{margin-top:4px;}
.top-links{
  display:flex;gap:10px;align-items:center;font-size:13px;flex-wrap:wrap;
}
.link{
  color:#bfdbfe;text-decoration:none;
  padding:6px 10px;border-radius:999px;
  border:1px solid #1f2937;background:#020617;
}
.link:hover{
  color:#e5e7eb;border-color:#1d4ed8;
  box-shadow:0 0 0 1px rgba(37,99,235,.75);
}
.table-wrap{
  margin-top:12px;
  border-radius:16px;
  border:1px solid #111827;
  overflow:hidden;
  background:#020617;
}
.table-wrap table{
  width:100%;border-collapse:separate;border-spacing:0;
}
.table-wrap thead th{
  background:#020617;
  position:sticky;top:0;z-index:1;
  text-align:left;padding:10px 9px;
  font-size:12px;color:#93c5fd;
  border-bottom:1px solid #111827;
  white-space:nowrap;
}
.table-wrap tbody td{
  padding:9px 9px;
  border-bottom:1px dashed #111827;
  font-size:13px;color:#e5e7eb;
  vertical-align:top;
}
.table-wrap tbody tr:nth-child(odd){background:#020617;}
.table-wrap tbody tr:nth-child(even){background:#020617;}
.table-wrap tbody tr:hover{background:#020617ee;}
.table-wrap tbody tr:last-child td{border-bottom:none;}
.empty{
  margin-top:18px;
  padding:36px 20px;
  text-align:center;
  font-size:13px;color:#9ca3af;
}
.empty b{color:#e5e7eb;}
.flash-wrap{margin-top:10px;font-size:13px;color:#e5e7eb;}
.flash-wrap .pill{
  display:inline-flex;align-items:center;gap:6px;
  padding:4px 8px;border-radius:999px;
  background:#020617;border:1px solid #1f2937;
  font-size:11px;color:#9ca3af;
}
.flash-wrap .pill b{color:#e5e7eb;}
.copyright-wrapper{text-align:center;margin-top:10px;}
@media(max-width:600px){
  .requests-body{padding-bottom:20px;}
  .copyright-wrapper .copyright-badge{
    position:static;
    transform:none;
    display:inline-block;
    margin-top:14px;
    font-size:16px;
    padding:5px 11px;
    box-shadow:none;
  }
}

/* ========= USERS PAGE ========= */
.users-container{
  max-width:900px;margin:auto;
  background:#020617;
  padding:20px 20px 18px;
  border-radius:20px;
  border:1px solid #111827;
  box-shadow:0 24px 60px rgba(0,0,0,.7);
}
.users-container h2{margin:0 0 4px;font-size:20px;}
.users-container .sub{font-size:13px;color:var(--muted);margin-bottom:12px;}
.nav-links{margin-bottom:12px;display:flex;gap:8px;flex-wrap:wrap;font-size:13px;}
.nav-links a{color:#bfdbfe;text-decoration:none;}
.nav-links a:hover{color:#e5e7eb;text-decoration:underline;}
.form-card{
  border-radius:14px;
  border:1px solid #111827;
  padding:14px 14px 12px;
  margin-bottom:16px;
  background:#020617;
}
.form-row{
  display:grid;grid-template-columns: 1.2fr 1.2fr 0.8fr auto;
  gap:8px;align-items:end;
}
@media(max-width:780px){
  .form-row{grid-template-columns:1fr;}
}
.users-container label{
  display:block;margin-bottom:4px;
  font-size:12px;color:#cbd5f5;font-weight:500;
}
.users-container input[type="text"],
.users-container input[type="password"],
.users-container select{
  width:100%;padding:9px 10px;font-size:13px;
  border-radius:10px;border:1px solid #111827;
  background:#020617;color:#e5e7eb;
  outline:none;
}
.users-container input::placeholder{color:#64748b;}
.users-container input:focus,
.users-container select:focus{
  border-color:#3b82f6;
  box-shadow:0 0 0 1px #1d4ed8,0 0 0 5px rgba(59,130,246,.35);
}
.users-container button{
  border-radius:999px;border:1px solid #1d4ed8;
  background:linear-gradient(135deg,#3b82f6,#2563eb);
  color:#f9fafb;
  padding:9px 14px;font-size:13px;font-weight:500;
  cursor:pointer;
  box-shadow:0 12px 32px rgba(37,99,235,.65);
}
.users-container button:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
}

.users-table{
  width:100%;border-collapse:separate;border-spacing:0;
  border-radius:14px;overflow:hidden;
  border:1px solid #111827;background:#020617;
  font-size:13px;
}
.users-table thead th{
  background:#020617;
  color:#93c5fd;
  padding:8px 8px;
  border-bottom:1px solid #111827;
  text-align:left;
  font-size:12px;
  white-space:nowrap;
}
.users-table tbody td{
  padding:7px 8px;
  border-bottom:1px dashed #111827;
  color:#e5e7eb;
  vertical-align:middle;
}
.users-table tbody tr:nth-child(odd){background:#020617;}
.users-table tbody tr:nth-child(even){background:#020617;}
.users-table tbody tr:last-child td{border-bottom:none;}

.msg-wrap{margin-top:10px;font-size:13px;}
.msg-wrap .msg{
  margin-bottom:6px;padding:8px 9px;border-radius:10px;border:1px solid #111827;
}
.msg-wrap .danger{background:#2a0b0b;color:#fecaca;border-color:#7f1d1d;}
.msg-wrap .success{background:#052e1b;color:#a7f3d0;border-color:#14532d;}

.action-group{display:flex;flex-wrap:wrap;gap:4px;align-items:center;}
.action-group form{margin:0;}
.action-input{
  width:130px;padding:5px 7px;font-size:12px;
  border-radius:8px;border:1px solid #111827;
  background:#020617;color:#e5e7eb;
}
.action-btn{
  border-radius:999px;border:1px solid #1f2937;
  background:#020617;color:#e5e7eb;
  padding:5px 9px;font-size:12px;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.5);
}
.action-btn.reset{border-color:#1d4ed8;}
.action-btn.delete{border-color:#7f1d1d;color:#fecaca;}
.action-btn:hover{filter:brightness(1.05);transform:translateY(-0.5px);}

/* ========= AUDIT PAGE ========= */
.audit-container{
  max-width:1120px;margin:auto;
  background:#020617;
  padding:20px 20px 18px;
  border-radius:20px;
  border:1px solid #111827;
  box-shadow:0 24px 60px rgba(0,0,0,.7);
}
.audit-container h2{
  margin:0 0 4px;font-size:20px;
}
.audit-container .sub{font-size:13px;color:var(--muted);margin-bottom:10px;}
.audit-container .nav-links{margin-bottom:10px;}
.audit-container .nav-links a{color:#bfdbfe;text-decoration:none;font-size:13px;}
.audit-container .nav-links a:hover{color:#e5e7eb;text-decoration:underline;}
.audit-table{
  width:100%;border-collapse:separate;border-spacing:0;
  border-radius:16px;
  overflow:hidden;
  border:1px solid #111827;
  background:#020617;
  font-size:13px;
}
.audit-table thead th{
  background:#020617;
  color:#93c5fd;
  padding:9px 8px;
  border-bottom:1px solid #111827;
  text-align:left;
  white-space:nowrap;
  font-size:12px;
}
.audit-table tbody td{
  padding:8px 8px;
  border-bottom:1px dashed #111827;
  color:#e5e7eb;
  vertical-align:top;
}
.audit-table tbody tr:nth-child(odd){background:#020617;}
.audit-table tbody tr:nth-child(even){background:#020617;}
.audit-table tbody tr:hover{background:#020617ee;}
.audit-table tbody tr:last-child td{border-bottom:none;}
