@charset "UTF-8";

/* src/styles.scss */
:root {
  --primary: #6d5ef8;
  --primary-dark: #5541e0;
  --primary-light: #ede9fe;
  --accent: #ff9f5a;
  --accent-light: #fff0e2;
  --bg: #f5f4fb;
  --surface: #ffffff;
  --text: #201c3a;
  --text-dim: #6b6885;
  --border: #e8e5f5;
  --danger: #ef4062;
  --danger-light: #ffe6ec;
  --warning: #e8912b;
  --warning-light: #fef1de;
  --success: #17b978;
  --success-light: #e1f9ee;
  --radius: 18px;
  --radius-lg: 24px;
  --nav-height: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --shadow-sm: 0 2px 8px rgb(93 65 224 / 6%);
  --shadow-md: 0 8px 24px rgb(93 65 224 / 12%);
  --shadow-lg: 0 16px 40px rgb(93 65 224 / 16%);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(
      circle at 100% 0%,
      #efe9ff 0%,
      transparent 45%),
    radial-gradient(
      circle at 0% 100%,
      #fff2e6 0%,
      transparent 40%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Heebo",
    "Arial Hebrew",
    sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1 {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 1.15rem;
  margin: 1.2rem 0 0.5rem;
  font-weight: 750;
}
h3 {
  font-size: 1rem;
  margin: 0.8rem 0 0.4rem;
  font-weight: 700;
}
a {
  color: var(--primary);
  text-decoration: none;
}
.page {
  padding: 16px;
  padding-bottom: calc(var(--nav-height) + var(--safe-bottom) + 24px);
  max-width: 900px;
  margin-inline: auto;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
  box-shadow: 0 6px 16px rgba(93, 65, 224, 0.28);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}
.btn:active {
  transform: translateY(1px) scale(0.98);
}
.btn:disabled {
  opacity: 0.55;
  cursor: default;
  box-shadow: none;
}
.btn.secondary {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: transparent;
  box-shadow: none;
}
.btn.ghost {
  background: transparent;
  color: var(--text-dim);
  border-color: var(--border);
  box-shadow: none;
}
.btn.danger {
  background:
    linear-gradient(
      135deg,
      var(--danger),
      #d32050);
  box-shadow: 0 6px 16px rgba(239, 64, 98, 0.28);
}
.btn.small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.875rem;
  border-radius: 11px;
}
.field {
  display: block;
  margin-bottom: 14px;
}
.field > span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 4px;
  font-weight: 600;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
textarea {
  min-height: 80px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary-dark);
}
.badge.expired,
.badge.URGENT {
  background: var(--danger-light);
  color: var(--danger);
}
.badge.expiring,
.badge.WARNING {
  background: var(--warning-light);
  color: var(--warning);
}
.badge.ok,
.badge.verified {
  background: var(--success-light);
  color: var(--success);
}
.badge.muted {
  background: #eef0f5;
  color: var(--text-dim);
}
.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  color: inherit;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.list-item:active {
  transform: scale(0.98);
  background: var(--bg);
}
.list-item .grow {
  flex: 1;
  min-width: 0;
}
.list-item .title {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-item .sub {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.empty {
  text-align: center;
  color: var(--text-dim);
  padding: 40px 16px;
}
.error-text {
  color: var(--danger);
  font-size: 0.9rem;
}
.muted {
  color: var(--text-dim);
  font-size: 0.88rem;
}
.row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.spread {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.summary-card {
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.summary-card:active {
  transform: scale(0.97);
}
.summary-card .num {
  font-size: 1.7rem;
  font-weight: 800;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.summary-card .lbl {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 600;
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(93, 65, 224, 0.25);
}
.spinner {
  width: 28px;
  height: 28px;
  margin: 24px auto;
  display: block;
  border: 3px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (hover: hover) {
  .card:hover,
  .list-item:hover,
  .summary-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
  }
  .btn:hover {
    box-shadow: 0 10px 22px rgba(93, 65, 224, 0.34);
    transform: translateY(-1px);
  }
}
@media (min-width: 768px) {
  .page {
    padding: 24px 32px;
    padding-bottom: 48px;
    max-width: 1000px;
  }
  .summary-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
