* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; background: #f5f6f8; color: #111; }

.site-header { background: #005da4; color: #fff; }
.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 18px 16px;
  display: flex; align-items: center; gap: 14px;
}
.logo { height: 50px; width: auto; }
.header-title { font-size: 20px; font-weight: 700; flex: 1; }
.nav a { color: #fff; text-decoration: none; margin-left: 10px; font-weight: 600; }
.nav a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 18px auto; padding: 0 16px; }
h1 { margin: 10px 0 14px; }

.card { background: #fff; border-radius: 10px; padding: 16px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); margin-bottom: 14px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.field label { display:block; font-weight:700; margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 10px; border: 1px solid #cfd4da; border-radius: 8px; font-size: 14px;
}
.hint { color: #555; display:block; margin-top: 6px; }
.sep { grid-column: 1 / -1; border: none; border-top: 1px solid #e7e7e7; margin: 6px 0; }

.actions { display:flex; gap: 10px; margin-top: 12px; }
.btn {
  background: #005da4; color: #fff; border: 0; border-radius: 8px;
  padding: 10px 14px; cursor: pointer; font-weight: 700; text-decoration: none; display:inline-block;
}
.btn.secondary { background: #e9eef5; color:#0b2b45; }

.alert { padding: 10px 12px; border-radius: 8px; margin-bottom: 12px; font-weight: 700; }
.alert.success { background: #e8f6ee; border: 1px solid #bfe8cf; color: #155c2e; }

.searchbar { display:flex; gap: 10px; }
.searchbar input { flex: 1; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px; border-bottom: 1px solid #eee; text-align:left; font-size: 14px; }
th { background: #f2f4f7; position: sticky; top: 0; }

.site-footer {
  background: #323232; color: #fff; text-align:center;
  padding: 30px 16px; /* ~2.5x */
  margin-top: 20px;
}

.footer-text { font-weight: 700; margin-bottom: 26px; }

.footer-logo {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr; }
  .searchbar { flex-direction: column; }
}
