/* ═══════════════════════════════════════════════════════════
   Weekstaat Van As – Stylesheet v2
   Full-page standalone app, bypassed WordPress theme
═══════════════════════════════════════════════════════════ */

/* ─── Global reset voor standalone pagina ─────────────── */
.ws-standalone { background: #0f172a; min-height: 100vh; }
.ws-standalone *, .ws-app *, .ws-login-screen * { box-sizing: border-box; }

/* ═══════════════════════════════════════════════════════════
   LOGIN SCHERM — split-screen ontwerp
═══════════════════════════════════════════════════════════ */

.ws-login-screen {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

/* Achtergrond decoratieve blobs */
.ws-login-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.ws-login-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .15;
}
.ws-blob-1 {
  width: 600px; height: 600px;
  background: #2563eb;
  top: -200px; left: -150px;
}
.ws-blob-2 {
  width: 500px; height: 500px;
  background: #16a34a;
  bottom: -150px; right: -100px;
}

.ws-login-container {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Linker branding panel */
.ws-login-brand-panel {
  flex: 1;
  background: linear-gradient(145deg, #1e3a5f 0%, #0f172a 100%);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  border-right: 1px solid rgba(255,255,255,.06);
}

.ws-brand-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }

.ws-brand-logo {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(37,99,235,.4);
}

.ws-brand-title {
  font-size: 36px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.ws-brand-sub {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 0;
}

.ws-brand-divider {
  width: 40px;
  height: 2px;
  background: #2563eb;
  margin: 32px 0;
  border-radius: 2px;
}

.ws-brand-features { display: flex; flex-direction: column; gap: 16px; }

.ws-brand-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}

.ws-feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
  margin-top: 5px;
}

.ws-brand-footer {
  font-size: 13px;
  color: #334155;
}

/* Rechter login-formulier panel */
.ws-login-form-panel {
  width: 480px;
  flex-shrink: 0;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 44px;
  min-height: 100vh;
}

.ws-login-form-inner { width: 100%; max-width: 360px; }

.ws-login-header { margin-bottom: 36px; }

.ws-login-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  margin-bottom: 20px;
}

.ws-login-title {
  font-size: 26px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -.3px;
  margin-bottom: 6px;
}

.ws-login-desc { font-size: 14px; color: #64748b; }

/* Alert / foutmelding */
.ws-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 24px;
}

.ws-alert-error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
}

/* Formulier */
.ws-form { display: flex; flex-direction: column; gap: 20px; }

.ws-field { display: flex; flex-direction: column; gap: 7px; }

.ws-field-label {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
}

.ws-field-wrap {
  position: relative;
}

.ws-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #475569;
  pointer-events: none;
}

.ws-field-input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 10px;
  color: #f1f5f9;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}

.ws-field-input::placeholder { color: #475569; }

.ws-field-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

.ws-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
  margin-top: 4px;
}

.ws-submit-btn:hover {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(37,99,235,.45);
}

.ws-submit-btn:active { transform: translateY(0); }

.ws-login-hulp {
  margin-top: 20px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13px;
  color: #64748b;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.ws-login-hulp svg { flex-shrink: 0; margin-top: 2px; color: #94a3b8; }
.ws-login-hulp strong { color: #1e293b; }

/* ═══════════════════════════════════════════════════════════
   STARTPAGINA
═══════════════════════════════════════════════════════════ */

.ws-start-screen {
  min-height: 100vh;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Topbar */
.ws-start-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(30,41,59,.8);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ws-start-topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #f1f5f9;
}

.ws-start-topbar-brand svg { color: #60a5fa; }

.ws-start-topbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ws-start-nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.ws-start-nav-link:hover { background: rgba(255,255,255,.06); color: #e2e8f0; }
.ws-start-nav-link-active { background: rgba(37,99,235,.15); color: #93c5fd; }

/* Hero sectie */
.ws-start-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.ws-start-hero-inner { flex: 1; }

.ws-start-hero-week {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  border-radius: 100px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.ws-start-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -.8px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.ws-start-hero-sub {
  font-size: 17px;
  color: #64748b;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 36px;
}

.ws-start-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(22,163,74,.35);
}

.ws-start-hero-btn:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(22,163,74,.45);
  color: #fff;
  text-decoration: none;
}

/* Hero stat kaart */
.ws-start-hero-card {
  width: 200px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #1e3a5f, #1e293b);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

.ws-start-stat-label { font-size: 13px; color: #64748b; margin-bottom: 8px; }
.ws-start-stat-nr    { font-size: 72px; font-weight: 800; color: #60a5fa; line-height: 1; }
.ws-start-stat-sub   { font-size: 14px; color: #475569; margin-top: 8px; }

/* Info kaarten sectie */
.ws-start-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.ws-start-card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 28px;
  transition: transform .2s, border-color .2s;
}

.ws-start-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.12);
}

.ws-start-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.ws-icon-blue   { background: rgba(37,99,235,.15);  color: #60a5fa; }
.ws-icon-green  { background: rgba(22,163,74,.15);   color: #4ade80; }
.ws-icon-orange { background: rgba(234,88,12,.15);   color: #fb923c; }

.ws-start-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 10px;
}

.ws-start-card-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
}

.ws-start-card-text strong { color: #93c5fd; }

.ws-start-footer {
  margin-top: auto;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: 13px;
  color: #334155;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   WEEKSTAAT FORMULIER APP
═══════════════════════════════════════════════════════════ */

.ws-app {
  display: flex;
  min-height: 100vh;
  background: #f1f5f9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
}

/* Zijbalk */
.ws-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #1e293b;
  display: flex;
  flex-direction: column;
  padding: 24px 14px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.ws-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 16px;
}

.ws-sidebar-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}

.ws-sidebar-brand > span {
  font-weight: 700;
  font-size: 15px;
  color: #f1f5f9;
}

.ws-sidebar-label {
  font-size: 10px;
  font-weight: 700;
  color: #475569;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 12px;
  margin-bottom: 6px;
}

.ws-nav { display: flex; flex-direction: column; gap: 2px; }

.ws-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: none;
  border: none;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
  transition: background .15s, color .15s;
}

.ws-nav-item svg { flex-shrink: 0; }
.ws-nav-item:hover { background: rgba(255,255,255,.05); color: #e2e8f0; }
.ws-nav-item.active { background: rgba(37,99,235,.18); color: #93c5fd; font-weight: 600; }

.ws-sidebar-footer {
  margin-top: auto;
  padding: 16px 12px 8px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.ws-sidebar-naam { font-size: 14px; font-weight: 600; color: #e2e8f0; }
.ws-sidebar-rol  { font-size: 12px; color: #475569; margin-top: 2px; }

.ws-logout-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  color: #475569;
  text-decoration: none;
  transition: color .15s;
}
.ws-logout-link:hover { color: #94a3b8; }

/* Hoofdinhoud */
.ws-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }

.ws-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  gap: 12px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 50;
}

.ws-page-title { font-size: 17px; font-weight: 700; color: #1e293b; }
.ws-page-sub   { font-size: 12px; color: #94a3b8; margin-top: 2px; }

.ws-topbar-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.ws-content {
  padding: 24px 28px 100px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

/* Knoppen */
.ws-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 9px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s, transform .1s, box-shadow .15s;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1;
}

.ws-btn svg { flex-shrink: 0; }
.ws-btn:hover { opacity: .88; transform: translateY(-1px); }
.ws-btn:active { transform: translateY(0); }

.ws-btn-green { background: #16a34a; color: #fff; box-shadow: 0 2px 8px rgba(22,163,74,.25); }
.ws-btn-blue  { background: #2563eb; color: #fff; box-shadow: 0 2px 8px rgba(37,99,235,.25); }
.ws-btn-gray  { background: #f1f5f9; color: #374151; border: 1px solid #e2e8f0; }
.ws-btn-red   { background: #dc2626; color: #fff; }
.ws-btn-blue  { background: #2563eb; color: #fff; }

.ws-btn-lg {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
  border-radius: 10px;
}

/* Stat box */
.ws-stat-box {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2340 100%);
  border-radius: 14px;
  padding: 22px 26px;
  color: #fff;
  border: 1px solid rgba(37,99,235,.2);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.ws-stat-label  { font-size: 12px; color: #64748b; text-transform: uppercase; letter-spacing: .06em; }
.ws-stat-value  { font-size: 48px; font-weight: 800; line-height: 1; margin: 6px 0; color: #60a5fa; }
.ws-stat-sub    { font-size: 13px; color: #475569; }

/* Kaarten */
.ws-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
}

.ws-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ws-card-title svg { color: #94a3b8; }

/* Form inputs */
.ws-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  margin-top: 14px;
}

.ws-input {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  font-size: 14px;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
  font-family: inherit;
}

.ws-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.1);
  background: #fff;
}

.ws-input[readonly] { background: #f1f5f9; color: #64748b; cursor: default; }

.ws-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

/* Dag header */
.ws-dag-header {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.ws-dag-head {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Locatie blokken */
.ws-locatie-blok {
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 10px;
  transition: border-color .15s, box-shadow .15s;
}

.ws-locatie-blok:focus-within {
  border-color: #bfdbfe;
  box-shadow: 0 0 0 3px rgba(59,130,246,.06);
}

.ws-locatie-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ws-locatie-nr {
  width: 28px; height: 28px;
  background: #e2e8f0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  flex-shrink: 0;
}

.ws-locatie-naam { flex: 1; margin: 0; }

.ws-verwijder-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 6px;
  border-radius: 7px;
  transition: color .15s, background .15s;
  display: flex; align-items: center; justify-content: center;
}

.ws-verwijder-btn:hover { color: #ef4444; background: #fee2e2; }

.ws-dagen-inputs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.ws-dag-input {
  width: 100%;
  padding: 8px 4px;
  text-align: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #1e293b;
  background: #fff;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}

.ws-dag-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59,130,246,.12);
}

.ws-dag-input:not(:placeholder-shown) {
  background: #eff6ff;
  border-color: #bfdbfe;
  font-weight: 600;
  color: #1d4ed8;
}

.ws-bijzonder-blok { background: #fff; border-color: #f1f5f9; }
.ws-bijzonder-blok:focus-within { border-color: #bbf7d0; box-shadow: 0 0 0 3px rgba(22,163,74,.06); }

/* Toevoegen knop */
.ws-add-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  background: #fff;
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  justify-content: center;
  transition: border-color .15s, color .15s, background .15s;
  margin-top: 10px;
  font-family: inherit;
}

.ws-add-btn:hover { border-color: #3b82f6; color: #2563eb; background: #eff6ff; }

/* Hulp modal */
.ws-hulp-inner {
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  max-width: 520px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
}

.ws-hulp-ol { font-size: 14px; color: #374151; line-height: 1.9; padding-left: 22px; }
.ws-hulp-ol strong { color: #1d4ed8; }

/* Mobiele balk */
.ws-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1e293b;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.08);
  z-index: 200;
  gap: 4px;
}

.ws-mob-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #475569;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 4px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  font-family: inherit;
}

.ws-mob-btn svg { width: 20px; height: 20px; }
.ws-mob-btn.active { color: #60a5fa; }
.ws-mob-btn:hover { background: rgba(255,255,255,.05); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .ws-login-brand-panel { display: none; }
  .ws-login-form-panel  { width: 100%; min-height: 100vh; }
  .ws-start-hero        { flex-direction: column; text-align: center; padding: 48px 24px 40px; }
  .ws-start-hero-sub    { max-width: 100%; }
  .ws-start-hero-card   { width: 160px; }
  .ws-start-cards       { grid-template-columns: 1fr; padding: 0 24px 40px; }
}

@media (max-width: 768px) {
  .ws-sidebar           { display: none; }
  .ws-mobile-bar        { display: flex; }
  .ws-content           { padding: 16px 16px 90px; }
  .ws-topbar            { padding: 14px 16px; }
  .ws-topbar-actions .ws-btn:not(.ws-btn-green) { display: none; }
  .ws-grid-2            { grid-template-columns: 1fr; }
  .ws-stat-value        { font-size: 36px; }
  .ws-start-topbar      { padding: 14px 20px; }
  .ws-start-hero-title  { font-size: 30px; }
}

@media (max-width: 480px) {
  .ws-login-form-panel  { padding: 36px 24px; }
  .ws-dag-input         { font-size: 12px; padding: 6px 2px; }
  .ws-card              { padding: 16px; }
}

/* Verberg WordPress specifieke elementen op app-pagina's */
.ws-standalone #wpadminbar { display: none !important; }
.ws-standalone html { margin-top: 0 !important; }
