/* [project]/app/globals.css [app-client] (css) */
:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --background: #f1f5f9;
  --surface: #fff;
  --text-main: #334155;
  --text-dark: #0f172a;
  --text-light: #94a3b8;
  --text-white: #fff;
  --border: #e2e8f0;
  --error: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --header-height: 64px;
  --sidebar-width: 260px;
  --shadow-sm: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
  --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--background);
  color: var(--text-main);
  overscroll-behavior: none;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  line-height: 1.6;
  overflow: auto;
}

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

.layout-container {
  height: 100dvh;
  display: flex;
  overflow: hidden;
}

.main-content {
  flex-direction: column;
  flex: 1;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.page-content {
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

.btn {
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  display: inline-flex;
}

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

.btn-primary:hover {
  background-color: var(--accent-hover);
}

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

.grid {
  gap: 1.5rem;
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.table-container {
  width: 100%;
  overflow-x: auto;
}

.data-table {
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  width: 100%;
}

.data-table th {
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--border);
  background-color: #f8fafc;
  padding: 1rem 1.5rem;
  font-size: .75rem;
  font-weight: 600;
}

.data-table td {
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
  padding: 1rem 1.5rem;
  font-size: .875rem;
}

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

.data-table tr:hover td {
  background-color: #f8fafc;
}

.badge {
  border-radius: 9999px;
  align-items: center;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 500;
  display: inline-flex;
}

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

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

.badge-error {
  color: #991b1b;
  background-color: #fee2e2;
}

.badge-neutral {
  color: #475569;
  background-color: #f1f5f9;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .layout-container {
    flex-direction: column;
  }

  .main-content {
    margin-left: 0;
  }

  .page-content {
    padding: 1rem;
  }

  .sidebar {
    z-index: 100;
    width: 280px;
    height: 100vh;
    transition: left .3s;
    position: fixed;
    top: 0;
    left: -100%;
    box-shadow: 2px 0 10px #0000001a;
  }

  .sidebar.open {
    left: 0;
  }

  .mobile-overlay {
    z-index: 99;
    background: #00000080;
    display: none;
    position: fixed;
    inset: 0;
  }

  .mobile-overlay.show {
    display: block;
  }

  .btn {
    min-height: 48px;
    padding: .875rem 1.5rem;
    font-size: 1rem;
  }

  .btn-primary {
    min-height: 52px;
    font-size: 1.125rem;
    font-weight: 600;
  }

  input, select, textarea {
    min-height: 48px;
    padding: .875rem 1rem;
    font-size: 16px !important;
  }

  .card {
    margin-bottom: 1rem;
    padding: 1.25rem;
  }

  .grid {
    gap: 1rem;
    grid-template-columns: 1fr !important;
  }

  .table-container {
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem;
    overflow-x: auto;
  }

  .data-table {
    min-width: 600px;
    font-size: .875rem;
  }

  .data-table th, .data-table td {
    white-space: nowrap;
    padding: .875rem .75rem;
  }

  h1 {
    font-size: 1.75rem !important;
  }

  h2 {
    font-size: 1.375rem !important;
  }

  h3 {
    font-size: 1.125rem !important;
  }

  .modal-content {
    -webkit-overflow-scrolling: touch;
    max-height: 90vh;
    overflow-y: auto;
  }

  .stat-card {
    padding: 1.25rem;
  }

  form > div {
    margin-bottom: 1.25rem;
  }

  a, button {
    -webkit-tap-highlight-color: #0000001a;
  }

  button {
    -webkit-user-select: none;
    user-select: none;
  }
}

.hamburger {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  display: none;
}

.hamburger span {
  background-color: var(--text-dark);
  border-radius: 2px;
  width: 24px;
  height: 3px;
  transition: all .3s;
}

.hamburger.open span:first-child {
  transform: rotate(45deg)translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg)translate(6px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

@media (hover: none) and (pointer: coarse) {
  nav a {
    align-items: center;
    min-height: 52px;
    display: flex;
  }

  :hover {
    transition: none !important;
  }

  input:focus, select:focus, textarea:focus, button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }
}

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

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

[class^="nextjs-toast-errors-parent"], [class*="nextjs-toast-errors-parent"], [class^="nextjs-static-indicator"], [class*="nextjs-static-indicator"], [data-nextjs-toast], nextjs-portal, #nextjs-dev-tools-overlay {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  display: none !important;
}

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