@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg-primary: #060b13;
  --bg-secondary: #0c1220;
  --bg-tertiary: #121b2e;
  --card-bg: #0d16298c;
  --card-bg-solid: #0d1527;
  --card-border: #ffffff0f;
  --card-hover-border: #06b6d459;
  --card-glow-cyan: #06b6d426;
  --card-glow-purple: #8b5cf626;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-cyan: #06b6d4;
  --accent-cyan-hover: #0891b2;
  --accent-purple: #8b5cf6;
  --accent-purple-hover: #7c3aed;
  --status-pending: #f59e0b;
  --status-pending-bg: #f59e0b1f;
  --status-transit: #8b5cf6;
  --status-transit-bg: #8b5cf61f;
  --status-progress: #06b6d4;
  --status-progress-bg: #06b6d41f;
  --status-completed: #10b981;
  --status-completed-bg: #10b9811f;
  --status-cancelled: #ef4444;
  --status-cancelled-bg: #ef44441f;
  --transition-fast: .15s ease;
  --transition-normal: .25s cubic-bezier(.4, 0, .2, 1);
  --font-sans: "Outfit", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --sidebar-width: 260px;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -.02em;
  color: var(--text-primary);
  font-weight: 600;
}

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

.app-container {
  background: radial-gradient(circle at 10% 20%, #0e192fe6 0%, #060b13 100%);
  width: 100vw;
  min-height: 100vh;
  display: flex;
}

.main-content {
  flex-direction: column;
  flex: 1;
  gap: 2rem;
  height: 100vh;
  padding: 2.5rem;
  display: flex;
  overflow-y: auto;
}

.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: var(--transition-normal);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 30px #0003;
}

.glass-card:hover {
  border-color: var(--card-hover-border);
  box-shadow: 0 8px 30px #0006, 0 0 15px var(--card-glow-cyan);
  transform: translateY(-2px);
}

.glass-card.purple-glow:hover {
  box-shadow: 0 8px 30px #0006, 0 0 15px var(--card-glow-purple);
  border-color: #8b5cf666;
}

.sidebar {
  width: var(--sidebar-width);
  border-right: 1px solid var(--card-border);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  z-index: 10;
  background: #080e19d9;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding: 2rem 1.5rem;
  display: flex;
}

.sidebar-logo {
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
}

.sidebar-menu {
  flex-direction: column;
  flex: 1;
  gap: .5rem;
  display: flex;
}

.sidebar-link {
  color: var(--text-secondary);
  transition: var(--transition-fast);
  cursor: pointer;
  border-radius: 12px;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  font-weight: 500;
  display: flex;
}

.sidebar-link:hover {
  color: var(--text-primary);
  background: #ffffff08;
}

.sidebar-link.active {
  color: var(--text-primary);
  border-left: 3px solid var(--accent-cyan);
  background: linear-gradient(135deg, #06b6d426, #8b5cf626);
  box-shadow: inset 0 0 10px #06b6d40d;
}

.sidebar-footer {
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid #ffffff0d;
  padding-top: 1rem;
  font-size: .8rem;
}

.page-header {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.page-title-area {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: .95rem;
}

.dashboard-metrics {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.metric-card {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.metric-label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .85rem;
  font-weight: 500;
}

.metric-value-row {
  justify-content: space-between;
  align-items: baseline;
  display: flex;
}

.metric-value {
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2.25rem;
  font-weight: 700;
}

.metric-icon {
  background: #ffffff0d;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
}

.dashboard-grid {
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  display: grid;
}

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

.form-group {
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.form-label {
  color: var(--text-secondary);
  font-size: .875rem;
  font-weight: 500;
}

.form-input, .form-select, .form-textarea {
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  transition: var(--transition-fast);
  background: #080e1999;
  border-radius: 8px;
  width: 100%;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: .95rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-cyan);
  background: #080e19e6;
  outline: none;
  box-shadow: 0 0 8px #06b6d440;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  display: grid;
}

.btn {
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  font-size: .95rem;
  font-weight: 600;
  display: inline-flex;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-hover));
  color: #04080f;
  box-shadow: 0 4px 14px #06b6d44d;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px #06b6d466;
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--card-border);
}

.btn-secondary:hover {
  border-color: var(--text-secondary);
  background: #ffffff14;
}

.btn-danger {
  color: var(--accent-red);
  background: #ef444426;
  border: 1px solid #ef44444d;
}

.btn-danger:hover {
  border-color: var(--accent-red);
  background: #ef444440;
}

.btn-small {
  border-radius: 8px;
  padding: .5rem .85rem;
  font-size: .85rem;
}

.modal-overlay {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 100;
  background: #04070dcc;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  animation: .2s ease-out fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  animation: .3s cubic-bezier(.16, 1, .3, 1) slideUp;
  display: flex;
  overflow: hidden;
  box-shadow: 0 20px 50px #0009;
}

.modal-header {
  border-bottom: 1px solid #ffffff0d;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  display: flex;
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.modal-footer {
  background: var(--bg-primary);
  border-top: 1px solid #ffffff0d;
  justify-content: flex-end;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.modal-close {
  color: var(--text-secondary);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  transition: var(--transition-fast);
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  display: flex;
}

.modal-close:hover {
  color: var(--text-primary);
  background: #ffffff0d;
}

.badge {
  letter-spacing: .02em;
  border-radius: 20px;
  align-items: center;
  padding: .25rem .6rem;
  font-size: .75rem;
  font-weight: 600;
  display: inline-flex;
}

.badge-support {
  color: var(--accent-cyan);
  background: #06b6d41f;
  border: 1px solid #06b6d433;
}

.badge-equipment {
  color: var(--accent-purple);
  background: #8b5cf61f;
  border: 1px solid #8b5cf633;
}

.badge-other {
  color: var(--text-secondary);
  background: #94a3b81f;
  border: 1px solid #94a3b833;
}

.status-badge {
  border-radius: 12px;
  padding: .25rem .75rem;
  font-size: .8rem;
  font-weight: 600;
}

.status-pending {
  background-color: var(--status-pending-bg);
  color: var(--status-pending);
  border: 1px solid #f59e0b33;
}

.status-in_transit {
  background-color: var(--status-transit-bg);
  color: var(--status-transit);
  border: 1px solid #8b5cf633;
}

.status-in_progress {
  background-color: var(--status-progress-bg);
  color: var(--status-progress);
  border: 1px solid #06b6d433;
}

.status-completed {
  background-color: var(--status-completed-bg);
  color: var(--status-completed);
  border: 1px solid #10b98133;
}

.status-cancelled {
  background-color: var(--status-cancelled-bg);
  color: var(--status-cancelled);
  border: 1px solid #ef444433;
}

.filter-bar {
  gap: 1rem;
  width: 100%;
  display: flex;
}

.search-input-wrapper {
  flex: 1;
  position: relative;
}

.search-icon {
  color: var(--text-muted);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.search-input-wrapper .form-input {
  padding-left: 2.75rem;
}

.command-container {
  border: 1px solid var(--card-border);
  font-family: var(--font-mono);
  color: #a5f3fc;
  background: #04070c;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
  padding: 1rem;
  font-size: .85rem;
  display: flex;
}

.command-text {
  white-space: nowrap;
  flex: 1;
  overflow-x: auto;
}

.btn-copy {
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 6px;
  align-items: center;
  gap: .35rem;
  padding: .35rem .65rem;
  font-size: .75rem;
  display: flex;
}

.btn-copy:hover {
  background: var(--accent-cyan);
  color: #04080f;
  border-color: var(--accent-cyan);
}

.checklist-container {
  flex-direction: column;
  gap: .75rem;
  margin-top: 1rem;
  display: flex;
}

.checklist-item {
  transition: var(--transition-fast);
  cursor: pointer;
  background: #ffffff05;
  border: 1px solid #ffffff0a;
  border-radius: 10px;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 1rem;
  display: flex;
}

.checklist-item:hover {
  background: #06b6d40a;
  border-color: #06b6d426;
}

.checklist-item.checked {
  background: #10b9810a;
  border-color: #10b98126;
}

.checklist-checkbox {
  border: 2px solid var(--text-muted);
  width: 1.25rem;
  height: 1.25rem;
  transition: var(--transition-fast);
  border-radius: 4px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  margin-top: .15rem;
  display: flex;
}

.checklist-item.checked .checklist-checkbox {
  border-color: var(--status-completed);
  background-color: var(--status-completed);
}

.checklist-text {
  color: var(--text-primary);
  transition: var(--transition-fast);
  font-size: .95rem;
}

.checklist-item.checked .checklist-text {
  color: var(--text-muted);
  text-decoration: line-through;
}

.cards-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  display: grid;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.animate-fade-in {
  animation: .3s ease-out fadeIn;
}

@media (max-width: 768px) {
  .app-container {
    flex-direction: column;
  }

  .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--card-border);
    width: 100%;
    height: auto;
    padding: 1.5rem;
  }

  .sidebar-logo {
    margin-bottom: 1rem;
  }

  .sidebar-menu {
    flex-flow: wrap;
  }

  .main-content {
    height: auto;
    padding: 1.5rem;
  }
}

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