body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f3f4f6;
  color: #111827;
}
body.login-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px 20px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef2f7 100%);
}
.login-shell {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 480px);
  gap: 28px;
  align-items: center;
}
.login-branding {
  padding: 28px 12px;
}
.login-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.login-branding h1 {
  margin: 18px 0 12px;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #0f172a;
}
.login-branding p {
  margin: 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
}
.login-card {
  width: min(420px, 100%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
}
.login-card-header {
  margin-bottom: 26px;
}
.login-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
  color: #075985;
  font-size: 0.88rem;
  font-weight: 700;
}
.login-card h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  color: #0f172a;
}
.login-card-header p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}
label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  color: #374151;
}
label input,
label select {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  font-size: 0.95rem;
}
label select[multiple],
.multi-select {
  min-height: 180px;
}
.field-hint {
  display: inline-block;
  margin-top: 8px;
  color: #6b7280;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
}
button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
button:hover,
.button:hover {
  background: #1d4ed8;
}
.button.secondary {
  background: #e5e7eb;
  color: #111827;
}
.app-header {
  background: #111827;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-header .brand {
  font-size: 1.1rem;
  font-weight: 700;
}
.app-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.app-header a {
  color: #d1d5db;
  text-decoration: none;
}
.header-company {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 700;
}
.header-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.7rem 0.45rem 0.45rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.header-profile-link:hover {
  background: rgba(148, 163, 184, 0.14);
  transform: translateY(-1px);
}
.header-profile-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
}
.header-profile-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.header-profile-name {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
}
.header-profile-username {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.1;
}
.app-header a.button.small {
  padding: 0.55rem 0.9rem;
}
.page.shell {
  padding: 24px;
}
.panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.small-panel {
  max-width: 820px;
  margin: 0 auto;
}
.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 24px;
}
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
}
.profile-hero {
  margin-bottom: 20px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.03)),
    #fff;
}
.profile-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 20px;
}
.profile-summary,
.profile-security {
  height: 100%;
}
.profile-summary h3,
.profile-security h3 {
  margin-top: 0;
  margin-bottom: 18px;
}
.profile-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}
.profile-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
}
.profile-subtitle {
  margin-top: 4px;
  color: #6b7280;
}
.profile-list {
  margin: 0;
}
.profile-list div {
  padding: 14px 0;
  border-top: 1px solid #e5e7eb;
}
.profile-list div:first-child {
  border-top: 0;
  padding-top: 0;
}
.profile-list dt {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}
.profile-list dd {
  margin: 0;
  color: #111827;
  font-weight: 600;
}
.profile-note {
  margin-top: 0;
  margin-bottom: 18px;
  color: #6b7280;
}
.dashboard-panel {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.03)),
    #fff;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.dashboard-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  padding: 22px;
  border: 1px solid #dbe4f0;
  border-radius: 20px;
  color: inherit;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
a.dashboard-card,
a.dashboard-card:visited {
  text-decoration: none;
  color: inherit;
}
a.dashboard-card:hover,
a.dashboard-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.12);
  border-color: #93c5fd;
  outline: none;
}
.dashboard-card-disabled {
  border-style: dashed;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f5f9 100%);
  box-shadow: none;
  cursor: default;
}
.dashboard-card-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2e8f0 0%, #f8fafc 100%);
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dashboard-card-top {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.dashboard-card-count {
  font-size: 2rem;
  font-weight: 800;
  color: #1d4ed8;
  line-height: 1;
  text-decoration: none;
}
.dashboard-card-count-label {
  color: #6b7280;
  font-size: 0.95rem;
  text-transform: capitalize;
  text-decoration: none;
}
.dashboard-card-body {
  flex: 1;
}
.dashboard-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #111827;
  text-decoration: none;
}
.dashboard-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.5;
  text-decoration: none;
}
.dashboard-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}
.dashboard-card-link::after {
  content: "\2192";
  font-size: 1rem;
}
.dashboard-card-disabled .dashboard-card-link {
  color: #64748b;
}
.dashboard-card-disabled .dashboard-card-link::after {
  content: "";
}
.dashboard-card * {
  text-decoration: none;
}
.dt-container {
  margin-top: 12px;
}
.dt-container .dt-layout-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 16px;
}
.dt-container .dt-layout-row:last-child {
  margin-bottom: 0;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
}
.dt-container .dt-layout-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dt-container .dt-layout-row > .dt-layout-cell:last-child {
  justify-content: flex-end;
  margin-left: auto;
}
.dt-container .dt-length label,
.dt-container .dt-search label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
  font-weight: 600;
}
.dt-container .dt-filter {
  display: inline-flex;
  align-items: center;
}
.dt-container .dt-input,
.dt-container .dt-filter select,
.dt-container .dt-length select,
.dt-container .dt-search input {
  margin-top: 0;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  box-sizing: border-box;
}
.dt-container .dt-search input {
  min-width: 180px;
  padding: 10px 12px;
}
.dt-container .dt-filter select,
.dt-container .dt-length select {
  width: auto;
  min-width: 88px;
  padding: 10px 36px 10px 12px;
}
.dt-container .dt-info {
  color: #6b7280;
  font-size: 0.95rem;
  font-weight: 600;
}
.dt-container .dt-paging {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.dt-container .dt-paging .dt-paging-button {
  padding: 0.6rem 0.95rem !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #111827 !important;
  font-weight: 700;
  box-shadow: none !important;
}
.dt-container .dt-paging .dt-paging-button:hover:not(.disabled):not(.current) {
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  border-color: #93c5fd !important;
}
.dt-container .dt-paging .dt-paging-button.current,
.dt-container .dt-paging .dt-paging-button.current:hover {
  background: #2563eb !important;
  color: #fff !important;
  border-color: #2563eb !important;
}
.dt-container .dt-paging .dt-paging-button.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.table-actions,
.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 18px;
}
.search-input {
  width: min(100%, 320px);
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
}
.table-responsive {
  overflow-x: auto;
}
.dt-container .table-responsive {
  border: 1px solid #d9dee7;
  border-radius: 10px;
  background: #fff;
}
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
  background: #fff;
}
.data-table th,
.data-table td {
  padding: 14px 16px;
  border-right: 1px solid #dfe4ea;
  border-bottom: 1px solid #dfe4ea;
  text-align: left;
  vertical-align: middle;
}
.data-table th {
  position: relative;
  background: linear-gradient(180deg, #fbfcfd 0%, #f3f5f8 100%);
  font-weight: 700;
  color: #111827;
  user-select: none;
  white-space: nowrap;
}
.data-table th:last-child,
.data-table td:last-child {
  border-right: none;
}
.data-table tbody tr:nth-child(even) td {
  background: #fbfbfc;
}
.data-table tbody tr:last-child td {
  border-bottom: none;
}
.data-table th.dt-sortable {
  cursor: pointer;
  padding-right: 34px;
}
.data-table th.dt-sortable::after {
  content: "\2195";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #c0c6d0;
  font-size: 0.82rem;
}
.data-table th.sort-asc::after {
  content: "\2191";
  color: #64748b;
}
.data-table th.sort-desc::after {
  content: "\2193";
  color: #64748b;
}
.data-table .actions-column,
.data-table .action-cell {
  width: 1%;
  white-space: nowrap;
}
.data-table .action-cell {
  position: relative;
  vertical-align: top;
  overflow: visible;
}
.table-action-dropdown {
  position: relative;
  display: inline-block;
}
.table-action-dropdown[open] {
  z-index: 30;
}
.table-action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  min-width: 108px;
  padding: 0.62rem 0.95rem;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.table-action-trigger:hover {
  border-color: #93c5fd;
  background: #f8fbff;
}
.table-action-trigger::-webkit-details-marker {
  display: none;
}
.table-action-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #64748b;
  transition: transform 0.2s ease;
}
.table-action-dropdown[open] .table-action-trigger {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.2);
}
.table-action-dropdown[open] .table-action-trigger::after {
  transform: rotate(180deg);
}
.table-action-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 9px);
  width: min(240px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 24px);
  padding: 0.8rem;
  border: 1px solid #dbe2ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow-y: auto;
  z-index: 950;
}
.table-action-dropdown.open-up .table-action-menu {
  top: auto;
  bottom: calc(100% + 9px);
}
.table-action-menu.is-floating {
  position: fixed;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
}
.action-menu-form,
.action-menu-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.action-menu-divider {
  height: 1px;
  background: #e5e7eb;
}
.action-menu-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}
.table-action-menu .action-button {
  width: 100%;
  min-width: 0;
  justify-content: flex-start;
  border-radius: 12px;
  padding: 0.72rem 0.95rem;
}
.table-action-menu .compact-select,
.table-action-menu .compact-input {
  width: 100%;
  min-width: 0;
}
.table-action-menu .table-note {
  width: 100%;
  justify-content: flex-start;
  border-radius: 12px;
  white-space: normal;
}
.row-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}
.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.action-button:hover {
  transform: translateY(-1px);
}
.action-button-edit {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
.action-button-edit:hover {
  background: #dbeafe;
  color: #1e40af;
  border-color: #93c5fd;
}
.action-button-delete {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}
.action-button-delete:hover {
  background: #ffe4e6;
  color: #9f1239;
  border-color: #fda4af;
}
.table-action-stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 190px;
}
.compact-select,
.compact-input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  font-size: 0.92rem;
}
.compact-input::placeholder {
  color: #9ca3af;
}
.data-table tbody tr:hover {
  background: transparent;
}
.data-table tbody tr:hover td {
  background: #f4f7fb;
}
.result-count {
  color: #6b7280;
}
.table-note {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.85rem;
  font-weight: 700;
}
.empty-state {
  padding: 24px;
  text-align: center;
  color: #6b7280;
}
.alert {
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 14px;
}
.alert-error {
  background: #fee2e2;
  color: #991b1b;
}
.alert-success {
  background: #ddf4ff;
  color: #075985;
}
.toast-stack {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(420px, calc(100vw - 2rem));
  z-index: 1500;
  pointer-events: none;
}
.toast-notification {
  margin-bottom: 0;
  border: 1px solid #bae6fd;
  box-shadow: 0 18px 34px rgba(2, 132, 199, 0.16);
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}
.toast-notification.hide {
  opacity: 0;
  transform: translateY(-12px);
}
.form-grid {
  display: grid;
  gap: 18px;
}
.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 18px;
  align-items: end;
}
.filter-grid .form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.status-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.status-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
.status-chip-new {
  background: #eff6ff;
  color: #1d4ed8;
}
.status-chip-waiting {
  background: #fef3c7;
  color: #92400e;
}
.status-chip-received {
  background: #dcfce7;
  color: #166534;
}
.status-chip-uploaded {
  background: #dbeafe;
  color: #1d4ed8;
}
.status-chip-extended {
  background: #fef3c7;
  color: #9a3412;
}
.status-chip-na {
  background: #e5e7eb;
  color: #374151;
}
.status-chip-disregard {
  background: #fee2e2;
  color: #b91c1c;
}
.status-chip-submitted {
  background: #ede9fe;
  color: #6d28d9;
}
footer.app-footer {
  padding: 16px 24px;
  text-align: center;
  color: #6b7280;
  font-size: 0.95rem;
}
@media (max-width: 720px) {
  .login-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .login-branding {
    padding: 0 0 8px;
  }
  .login-branding h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .panel-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .app-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }
  .app-header nav {
    width: 100%;
  }
  .panel-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .filter-grid {
    grid-template-columns: 1fr;
  }
  .table-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .table-action-dropdown,
  .table-action-trigger {
    width: 100%;
  }
  .table-action-menu {
    left: auto;
    right: 0;
    width: min(260px, calc(100vw - 48px));
  }
  .table-action-menu.is-floating {
    left: 0;
    right: auto;
  }
  .toast-stack {
    top: 0.85rem;
    right: 0.85rem;
    left: 0.85rem;
    width: auto;
  }
  .dt-container .dt-layout-row,
  .dt-container .dt-layout-cell {
    flex-direction: column;
    align-items: flex-start;
  }
  .dt-container .dt-search input {
    min-width: 0;
    width: 100%;
  }
}

/* Modal styles */
.modal {
  display: none !important;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-header {
  margin-bottom: 16px;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #111827;
}

.modal-body {
  margin-bottom: 24px;
  color: #6b7280;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
  color: #111827;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.modal-actions .button {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}
