/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
}

body {
  color: #eef2ff;
  background: radial-gradient(1300px 700px at 70% -20%, #1a2e62 0%, #0000 60%), #070b16;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 14px;
  display: flex;
}

.h1 {
  letter-spacing: .2px;
  margin: 0;
  font-size: 34px;
}

.muted {
  color: #a6b6da;
  margin-top: 4px;
  font-size: 13px;
}

.kpiGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
  display: grid;
}

.panel {
  background: linear-gradient(#10172b, #0d1424);
  border: 1px solid #233456;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 30px #00000040;
}

.panel.mini {
  min-width: 260px;
}

.tiny {
  color: #9fb0d8;
  font-size: 12px;
}

.value {
  margin: 2px 0 6px;
  font-size: 26px;
  font-weight: 700;
}

.value.ok {
  color: #6de39c;
}

.value.bad {
  color: #ff8d8d;
}

.grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
  display: grid;
}

.col {
  background: #111a32;
  border: 1px solid #26385e;
  border-radius: 12px;
  min-height: 48vh;
  padding: 12px;
}

.col h2 {
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #c7d6ff;
  margin: 0 0 10px;
  font-size: 13px;
}

.card {
  background: #182344;
  border: 1px solid #334a7a;
  border-left: 4px solid #4f6aa1;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 10px;
}

.task {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.metaLine {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  display: flex;
}

.badge {
  color: #d7e5ff;
  border: 1px solid #425992;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
}

.role {
  color: #9fb0d8;
  margin-top: 4px;
  font-size: 12px;
}

.empty {
  color: #8092bd;
  font-style: italic;
}

.muted2 {
  color: #9fb0d8;
  font-size: 12px;
}

.bottomGrid {
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
  display: grid;
}

h3 {
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #c7d6ff;
  margin: 0 0 10px;
  font-size: 14px;
}

.agentGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  display: grid;
}

.agentCard {
  background: #131d38;
  border: 1px solid #2b3d66;
  border-radius: 10px;
  padding: 10px;
}

.agentHead {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  display: flex;
}

.status {
  color: #c9d8ff;
  border: 1px solid #435682;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
}

.status.active {
  color: #9ff0c2;
  border-color: #2d8756;
}

.barWrap {
  background: #0d1530;
  border: 1px solid #324978;
  border-radius: 999px;
  height: 8px;
  margin: 8px 0;
  overflow: hidden;
}

.bar {
  height: 100%;
}

.cronList {
  gap: 8px;
  max-height: 280px;
  display: grid;
  overflow: auto;
}

.cronItem {
  background: #131d38;
  border: 1px solid #2b3d66;
  border-radius: 10px;
  padding: 10px;
}

.cronTop {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  display: flex;
}

@media (max-width: 1150px) {
  .kpiGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid, .bottomGrid, .agentGrid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/