/* vtgs/assets/style.css */
body { background: #f6f7fb; }
.card { border: 0; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.btn { border-radius: 12px; }
.form-control, .form-select { border-radius: 12px; }
.badge { border-radius: 999px; }
.kpi { font-size: 1.75rem; font-weight: 800; }


/* =========================
   Retro Home Theme (Safe)
   ========================= */

/* Base page reset */
/* vtgs/assets/style.css */

/* --- Base --- */
html, body {
  height: 100%;
  margin: 0;
}

body {
  background: #0b0f1a;
}

/* ===== Background image + dark overlay ===== */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url("../img/Background-controller-image.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


/* ===== App container (content layer) ===== */
.app {
  position: relative;
  z-index: 1;

  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 18px 60px;

  color: #e6e8ee;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ===== Modern Bootstrap-friendly styling ===== */
.app .card {
  border: 0;
  border-radius: 16px;
  background: rgba(18, 24, 38, 0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  color: #e6e8ee;
}

.app .text-muted {
  color: #9aa4b2 !important;
}

.app .btn {
  border-radius: 12px;
}

.app .form-control,
.app .form-select {
  border-radius: 12px;
}

.app .badge {
  border-radius: 999px;
}

/* ===== Layout ===== */
.app-content {
  display: grid;
  gap: 16px;
}

@media (min-width: 992px) {
  .app-content {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}