/* iMartGroup Theme (shared across pages) */
:root {
  --imt-navy: #0f2a49;
  --imt-navy-2: #012a49;
  --imt-red: #dc1f2a;
  --imt-blue: #3498db;

  --imt-bg: #f7fbfe;
  --imt-card: rgba(255, 255, 255, 0.98);
  --imt-text: #0f2a49;
  --imt-muted: rgba(15, 42, 73, 0.72);
  --imt-border: rgba(15, 42, 73, 0.18);
  --imt-shadow: 0 18px 50px rgba(0, 0, 0, 0.18), 0 2px 12px rgba(0, 0, 0, 0.10);
}

html, body {
  height: 100%;
}

body {
  color: var(--imt-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1200px 800px at 20% 15%, rgba(220, 31, 42, 0.12), transparent 55%),
    radial-gradient(1000px 700px at 80% 85%, rgba(52, 152, 219, 0.14), transparent 55%),
    linear-gradient(135deg, var(--imt-navy) 0%, var(--imt-navy-2) 55%, #061629 100%);
}

.page-main {
  flex: 1 0 auto;
}

/* Responsive helpers */
.responsive-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.responsive-table table {
  min-width: 820px;
}

a {
  color: var(--imt-blue);
}

a:hover {
  color: var(--imt-red);
}

/* Reusable button tokens */
.imt-btn-primary {
  background: linear-gradient(135deg, var(--imt-red) 0%, #ff3b46 55%, var(--imt-red) 100%);
  color: #fff;
}

.imt-btn-primary:hover {
  filter: saturate(1.05);
}

.imt-focus-ring:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.16);
  border-color: rgba(52, 152, 219, 0.85);
}

.site-footer {
  margin-top: auto;
  width: 100%;
  padding: clamp(10px, 1.2vw, 14px) clamp(12px, 2.4vw, 22px);
  text-align: center;
  font-size: clamp(11px, 0.85vw, 13px);
  line-height: 1.5;
  color: rgba(15, 42, 73, 0.92);
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(15, 42, 73, 0.16);
  backdrop-filter: blur(10px);
  word-break: break-word;
}

.site-footer a {
  color: rgba(15, 42, 73, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(15, 42, 73, 0.35);
}

.site-footer a:hover {
  color: rgba(15, 42, 73, 0.92);
  text-decoration-color: rgba(15, 42, 73, 0.7);
}

@media (max-width: 480px) {
  .site-footer {
    padding: 12px 14px;
    font-size: 12px;
  }
}

