﻿[v-cloak] {
  display: none !important;
}

:root {
  --surface-bg: #f4f7f8;
  --card-bg: rgba(255, 255, 255, 0.88);
  --accent-a: #00695c;
  --accent-b: #0277bd;
  --ink: #0f1f25;
}

html,
body,
#app {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", "Noto Sans SC", sans-serif;
  background: var(--surface-bg);
  color: var(--ink);
}

.v-application {
  font-family: "Manrope", "Noto Sans SC", sans-serif;
}

.atmo-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(2, 119, 189, 0.22), transparent 38%),
    radial-gradient(circle at 86% 15%, rgba(0, 105, 92, 0.25), transparent 34%),
    radial-gradient(circle at 75% 78%, rgba(255, 171, 64, 0.22), transparent 30%);
}

.v-main {
  position: relative;
  z-index: 1;
}

.page-shell {
  max-width: 1400px;
}

.top-bar {
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.v-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 31, 37, 0.06);
}

.auth-side {
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(0, 105, 92, 0.96), rgba(2, 119, 189, 0.94));
  color: #fff;
}

.auth-title {
  line-height: 1.2;
}

.stat-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(235, 244, 247, 0.88));
}

.task-table {
  max-height: 320px;
  overflow: auto;
}

.result-json {
  margin: 0;
  font-size: 12px;
  white-space: pre-wrap;
  word-break: break-all;
}

.panel-fab {
  position: fixed !important;
  right: 22px;
  bottom: 24px;
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  z-index: 1200;
}

.panel-header {
  border: 1px solid rgba(15, 31, 37, 0.08);
}

.panel-drawer .v-list-item--active {
  background: rgba(2, 119, 189, 0.12);
  color: #01579b;
}

.panel-pagination {
  justify-content: center;
}

.package-editor {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}

@media (max-width: 960px) {
  .page-shell {
    padding-top: 24px !important;
  }

  .panel-fab {
    right: 16px;
    bottom: 18px;
  }

  .package-row {
    grid-template-columns: 1fr;
  }
}
