/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
:root {
  --background: #f6f3ee;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --text: #1d2a2f;
  --muted: #61737b;
  --accent: #0f766e;
  --accent-strong: #115e59;
  --danger: #b42318;
  --border: rgba(29, 42, 47, 0.1);
  --shadow: 0 18px 40px rgba(30, 42, 56, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", "Arial", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(194, 120, 3, 0.12), transparent 24%),
    var(--background);
  color: var(--text);
}

body {
  min-width: 320px;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.25rem);
  line-height: 1.1;
}

.hero p {
  margin: 10px 0 0;
  color: var(--muted);
}

.card {
  background: var(--panel);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.section {
  padding: 24px;
}

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

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 0.9rem;
  color: var(--muted);
}

.field input,
.field select {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel-strong);
  padding: 12px 14px;
  min-height: 48px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  background: #e7f2f1;
  color: var(--accent-strong);
}

.status {
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}

.status.error {
  color: var(--danger);
  border-color: rgba(180, 35, 24, 0.2);
  background: rgba(255, 243, 242, 0.95);
}

.tableWrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
}

th {
  text-align: left;
  color: var(--muted);
  font-weight: 600;
}

td.num,
th.num {
  text-align: right;
}

tr.total {
  background: rgba(15, 118, 110, 0.08);
  font-weight: 700;
}

.meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.installBox {
  max-width: 640px;
  margin: 48px auto;
}

@media (max-width: 720px) {
  .shell {
    padding: 16px;
  }

  .section {
    padding: 18px;
  }
}

