@charset "UTF-8";

/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  background: #f4f6fa;
}
body {
  margin: 0;
  padding: 0;
}
:root {
  --color-primary: #1a237e;
  --color-primary-light: #3949ab;
  --color-accent: #ffeb3b;
  --color-bg: #f4f6fa;
  --color-surface: #ffffff;
  --color-border: #e0e4ef;
  --color-text: #333333;
  --color-text-secondary: #6b7280;
  --color-success: #2e7d32;
  --color-error: #d32f2f;
  --color-warning: #f57c00;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.table-container {
  overflow-x: auto;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  font-size: 0.92rem;
}
table th,
table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
table th {
  background: #e8eaf6;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
  z-index: 1;
  white-space: nowrap;
}
table tbody tr {
  transition: background 0.12s;
}
table tbody tr:hover {
  background: #f5f6ff;
}
table tbody tr:nth-child(even) {
  background: #fafbfe;
}
table tbody tr:nth-child(even):hover {
  background: #f0f1ff;
}
table tbody tr:last-child td {
  border-bottom: none;
}
table tbody tr[routerLink],
table tbody tr[ng-reflect-router-link],
table tbody tr.clickable {
  cursor: pointer;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 0.5rem 0;
}
.pagination button {
  padding: 0.45rem 1rem;
  background: var(--color-primary-light);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.pagination button:hover:enabled {
  background: var(--color-primary);
  transform: translateY(-1px);
}
.pagination button:disabled {
  background: #c5cae9;
  cursor: not-allowed;
  opacity: 0.7;
}
.pagination span {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}
.error {
  color: var(--color-error);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.empty {
  text-align: center;
  color: var(--color-text-secondary);
  margin: 2rem 0;
  font-size: 1rem;
}
.success-message {
  background: #e8f5e9;
  color: var(--color-success);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 33, 46, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.modal {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2.5rem 1.5rem;
  min-width: 320px;
  max-width: 90vw;
  text-align: center;
  animation: modalIn 0.2s ease-out;
}
.modal h3 {
  margin-top: 0;
  color: var(--color-warning);
  font-size: 1.15rem;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.modal-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.modal-actions button {
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.4rem;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.18s, transform 0.1s;
}
.modal-actions button.confirm {
  background: var(--color-warning);
  color: #fff;
}
.modal-actions button.confirm:hover {
  background: #e65100;
  transform: translateY(-1px);
}
.modal-actions button.cancel {
  background: #eee;
  color: #333;
}
.modal-actions button.cancel:hover {
  background: #ddd;
}
.btn-primary {
  padding: 0.55rem 1.2rem;
  background: var(--color-primary-light);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: var(--color-primary);
}
.btn-danger {
  padding: 0.55rem 1.2rem;
  background: var(--color-error);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-danger:hover {
  background: #b71c1c;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #c5cae9;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9fa8da;
}

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