:root {
  --bg-top: #f6f8ff;
  --bg-bottom: #ebf8f4;
  --accent-main: #0f766e;
  --accent-soft: #dbf4ee;
  --text-main: #12211f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  background: linear-gradient(160deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  color: var(--text-main);
}

#root {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 9999px;
  filter: blur(48px);
  opacity: 0.44;
  z-index: 0;
  pointer-events: none;
}

.bg-orb-a {
  width: 280px;
  height: 280px;
  background: #a8e7d4;
  top: -80px;
  right: -50px;
}

.bg-orb-b {
  width: 320px;
  height: 320px;
  background: #b8d1ff;
  bottom: -120px;
  left: -70px;
}

.page-wrap {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 16px 34px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(15, 118, 110, 0.16);
}

.tabs-block [role="tablist"] {
  gap: 4px;
}

.table-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 118, 110, 0.14);
}

.table-wrap {
  width: 100%;
}

.table-wrap table {
  width: 100%;
  table-layout: fixed;
}

.table-wrap th,
.table-wrap td {
  vertical-align: top;
}

.tender-main-cell {
  width: 35%;
}

.tender-main-object,
.tender-main-number,
.tender-main-customer {
  white-space: normal;
  overflow-wrap: anywhere;
}

.tender-main-number a {
  font-weight: 700;
}

.row-moved-note {
  color: #7d8785;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 800;
}

.table-row-moved {
  opacity: 0.46;
  pointer-events: none;
}

.comment-cell {
  min-width: 0;
  max-width: none;
}

.ai-cell {
  min-width: 0;
}

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

.muted {
  color: #5b6664;
}

@media (max-width: 900px) {
  .page-wrap {
    padding: 16px 12px 22px;
  }
}
