/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --primary: #003057;
  --primary-hover: #001e3a;
  --primary-light: #e8f0f8;
  --accent: #10b981;
  --accent-warm: #f59e0b;
  --danger: #ef4444;
  --bg-color: #f4f6f9;
  --surface: #fff;
  --text-main: #111827;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-focus: #003057;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: inherit;
}

.button {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: none;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  font-family: inherit;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  transition: all .2s;
  display: inline-flex;
}

.button:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #00305740;
}

.button:active {
  transform: translateY(0);
}

.input, .input:is(select) {
  border: 1.5px solid var(--border);
  width: 100%;
  color: var(--text-main);
  background: #fff;
  border-radius: 6px;
  margin-bottom: 0;
  padding: .6rem .75rem;
  font-family: inherit;
  font-size: .85rem;
  transition: border-color .2s, box-shadow .2s;
}

.input:focus {
  border-color: var(--border-focus);
  outline: none;
  box-shadow: 0 0 0 3px #0030571a;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px #0000000f, 0 1px 2px #0000000a;
}

.table-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow-x: auto;
  box-shadow: 0 1px 3px #0000000f;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding: .85rem 1rem;
}

th {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  background-color: #f8fafc;
  font-size: .7rem;
  font-weight: 700;
}

td {
  font-size: .82rem;
}

.modal-overlay {
  z-index: 2000;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #00000080;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  padding: 0;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px #00000040;
}

.modal-header {
  margin-bottom: 0;
  padding: 1.25rem 1.5rem;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .4rem;
  font-size: .78rem;
  font-weight: 600;
  display: block;
}

.modal-actions {
  justify-content: flex-end;
  gap: .75rem;
  margin-top: 2rem;
  display: flex;
}

.button-secondary {
  color: var(--text-main);
  border: 1.5px solid var(--border);
  cursor: pointer;
  background: #fff;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 600;
  transition: all .15s;
  display: inline-flex;
}

.button-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.search-bar {
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
}

.search-bar:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px #00305714;
}

.search-bar input {
  width: 200px;
  color: var(--text-main);
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: .82rem;
}

.search-bar input::placeholder {
  color: #94a3b8;
}

tbody tr {
  transition: background .15s;
}

tbody tr:hover {
  background: #f8fafc;
}

.glass-card {
  -webkit-backdrop-filter: blur(8px);
  background: #ffffffa6;
  border: 1px solid #fff6;
  border-radius: 12px;
  box-shadow: 0 8px 32px #0030570d;
}

/* [project]/src/components/AdminLayout.css [app-client] (css) */
.admin-layout {
  min-height: 100vh;
  display: flex;
}

.sidebar {
  color: #fff;
  background: #001e3a;
  flex-direction: column;
  width: 260px;
  display: flex;
  box-shadow: 4px 0 10px #0000001a;
}

.sidebar h2 {
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom: 1px solid #ffffff1a;
  margin: 0;
  padding: 2rem;
  font-size: 1rem;
  font-weight: 800;
}

.sidebar nav {
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 0;
  display: flex;
}

.sidebar nav a {
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 1rem 2rem;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.sidebar nav a:hover, .sidebar nav a.active {
  color: #fff;
  border-right: 4px solid var(--primary);
  background: #ffffff0d;
}

.logout-btn {
  color: #ef4444;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-top: 1px solid #374151;
  padding: 1rem;
  font-size: 1rem;
}

.logout-btn:hover {
  background: #1f2937;
}

.main-content {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

/*# sourceMappingURL=src_0w_7xzz._.css.map*/