/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #172033;
  --muted: #61708a;
  --border: #dbe3f0;
  --accent: #2b6ef2;
  --danger: #c93f3f;
  --warn: #d08b13;
  --success: #227a41;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  max-width: 860px;
  margin: 0 auto;
  padding: 16px 16px 88px;
}

h1, h2, h3 {
  margin: 0 0 12px;
}

p {
  margin: 0 0 10px;
}

.grid {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.kpi {
  font-size: 28px;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #edf3ff;
}

.badge.available { background: #e8f6ed; color: var(--success); }
.badge.partial { background: #fff4de; color: var(--warn); }
.badge.not_available { background: #fdeaea; color: var(--danger); }

.table-like {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.item-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}

.item-row strong {
  font-size: 16px;
}

.inline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

button, .button {
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

button.secondary, .button.secondary {
  background: #eaf0fb;
  color: var(--text);
}

button.warn {
  background: var(--warn);
}

form {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}

.bottom-nav-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.bottom-nav a {
  padding: 14px 10px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.bottom-nav a.active {
  color: var(--accent);
  font-weight: 700;
}

@media (min-width: 768px) {
  .item-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

