@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --primary: #0f6fec;
  --primary-dark: #0952b8;
  --primary-light: #e8f1fd;
  --accent: #00c896;
  --accent-dark: #009b74;
  --bg: #f8fafb;
  --bg-white: #fff;
  --surface: #fff;
  --surface-alt: #f2f6fa;
  --border: #e2eaf2;
  --text: #1a2332;
  --text-muted: #6b7e93;
  --text-light: #9eaec0;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --shadow-sm: 0 1px 3px #0f6fec14;
  --shadow: 0 4px 16px #0f6fec1a;
  --shadow-lg: 0 8px 32px #0f6fec26;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

.btn {
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary-light);
}

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

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-ghost {
  color: var(--text-muted);
  background: none;
}

.btn-ghost:hover {
  background: var(--surface-alt);
  color: var(--text);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none !important;
}

.form-group {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.form-label {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.form-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  outline: none;
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px #0f6fec1f;
}

.form-input.error {
  border-color: var(--danger);
}

.form-error {
  color: var(--danger);
  font-size: 13px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7E93' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.card-lg {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.badge {
  border-radius: 20px;
  align-items: center;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.badge-success {
  color: #15803d;
  background: #dcfce7;
}

.badge-warning {
  color: #b45309;
  background: #fef3c7;
}

.badge-danger {
  color: #b91c1c;
  background: #fee2e2;
}

.badge-info {
  color: #1d4ed8;
  background: #dbeafe;
}

.badge-muted {
  background: var(--surface-alt);
  color: var(--text-muted);
}

.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.text-primary {
  color: var(--primary);
}

.text-success {
  color: var(--success);
}

.text-danger {
  color: var(--danger);
}

.font-bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 16px;
}

.gap-2 {
  gap: 8px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

.w-full {
  width: 100%;
}

.sr-only {
  clip: rect(0,0,0,0);
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

.spinner {
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: .7s linear infinite spin;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast-container {
  z-index: 9999;
  flex-direction: column;
  gap: 10px;
  display: flex;
  position: fixed;
  top: 20px;
  right: 20px;
}

.toast {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 360px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  animation: .3s slideIn;
}

.toast-success {
  border-left: 4px solid var(--success);
  color: var(--text);
  background: #fff;
}

.toast-error {
  border-left: 4px solid var(--danger);
  color: var(--text);
  background: #fff;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.table-wrap {
  overflow-x: auto;
}

.table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}

.table th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  background: var(--surface-alt);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
}

.table td {
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  padding: 14px 16px;
}

.table tbody tr:hover {
  background: var(--primary-light);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.status-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
}

.divider {
  background: var(--border);
  height: 1px;
  margin: 24px 0;
}

.alert {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
}

.alert-info {
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.alert-success {
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.alert-warning {
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.alert-danger {
  color: #be123c;
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

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