:root {
  --ink: #0f1f16;
  --ink-soft: #203428;
  --muted: #4a5e52;
  --paper: #f2f7f1;
  --paper-strong: #e6f0e8;
  --accent: #1f7a4a;
  --accent-deep: #155a36;
  --accent-glow: #bfe6ce;
  --leaf: #3aa264;
  --card: #ffffff;
  --stroke: #cad9cf;
  --shadow: 0 24px 60px rgba(15, 31, 22, 0.12);
  --radius: 22px;
  --btn-min-width: 150px;
  --btn-height: 44px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 600px at 12% 10%, #ffffff 0%, #f2f7f1 45%, #e6f0e8 100%),
    repeating-linear-gradient(135deg, rgba(31, 122, 74, 0.06) 0 2px, rgba(31, 122, 74, 0) 2px 12px);
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.admin-wide .container {
  width: min(1320px, 96vw);
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(242, 247, 241, 0.92);
  border-bottom: 1px solid var(--stroke);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.brand-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 22px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 15px;
  color: var(--ink-soft);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 80px 0 60px;
}

.hero h1 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 28px;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 122, 74, 0.16);
}

.hero-card h3 {
  margin-top: 0;
  font-family: "Manrope", system-ui, sans-serif;
}

.card-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-dot {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(58, 162, 100, 0.16);
}

.panel-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: var(--btn-min-width);
  min-height: var(--btn-height);
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--leaf));
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 18px rgba(31, 122, 74, 0.28);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(31, 122, 74, 0.32);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  box-shadow: none;
}

.section {
  padding: 30px 0 80px;
}

.section h2 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  margin: 0 0 12px;
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.dashboard-title {
  flex: 1 1 220px;
}

.dashboard-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
}

.dashboard-actions .btn {
  min-width: 0;
  padding: 0 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.workflow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 18px;
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.workflow-index {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--leaf));
  box-shadow: 0 10px 18px rgba(31, 122, 74, 0.25);
}

.workflow-connector {
  width: 2px;
  height: 26px;
  background: linear-gradient(180deg, rgba(31, 122, 74, 0.25), rgba(31, 122, 74, 0.75));
  margin-left: 22px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(15, 31, 22, 0.08);
}

.card h3 {
  margin-top: 0;
}

.card-header-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.card-header-actions h3 {
  margin: 0;
}

.card p {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 16px;
}

.row-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.row-actions form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  width: auto;
}

.row-actions .btn {
  min-width: 0;
}

.btn-sm {
  padding: 0 14px;
  height: 34px;
  font-size: 12px;
}

.input-sm {
  height: 34px;
  font-size: 12px;
  padding: 0 10px;
}

.employee-actions .action-password {
  flex: 1 1 260px;
}

.employee-actions .action-password .input {
  flex: 1 1 160px;
  min-width: 160px;
  max-width: 220px;
}

.employee-action-cell {
  min-width: 260px;
  white-space: normal;
}

.employee-actions {
  display: grid;
  gap: 8px;
}

.employee-actions .action-row,
.employee-actions .action-password {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.employee-actions .input {
  width: 160px;
}

.inline-form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.inline-form .input {
  min-width: 160px;
  max-width: 220px;
}

.inline-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}

.inline-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

.update-form {
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 12px 14px;
  align-items: end;
}

.update-form label {
  margin-bottom: -6px;
}

.update-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.update-block label {
  margin-bottom: 0;
}

.update-form textarea {
  min-height: 80px;
}

.update-form .update-save {
  justify-self: start;
  padding-inline: 18px;
}

.update-form .update-notice {
  grid-column: 1 / -1;
  display: inline-block;
  max-width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 6px;
}

.update-form .update-notice-success {
  background: #dff6e8;
  border: 1px solid #77c48f;
  color: #0f3d22;
  border-left: 5px solid #2f8f4e;
  box-shadow: 0 10px 22px rgba(20, 83, 45, 0.14);
}

.update-form .update-notice-error {
  background: #fdecea;
  border: 1px solid #e99595;
  color: #7f1d1d;
  border-left: 5px solid #b91c1c;
  box-shadow: 0 10px 22px rgba(127, 29, 29, 0.14);
}

.filters {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: end;
}

.summary-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  align-items: end;
  margin: 12px 0 6px;
}

.summary-filters label {
  font-size: 13px;
  color: var(--ink-soft);
}

.filters-actions .btn {
  width: var(--btn-min-width);
  justify-content: center;
}

@media (max-width: 720px) {
  .filters-actions {
    flex-wrap: nowrap;
  }

  .filters-actions .btn {
    width: 120px;
  }
}

.form label {
  font-size: 14px;
  color: var(--ink-soft);
}

.required {
  color: #b3261e;
  font-weight: 700;
}

.input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.cc-list,
.assignee-list {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: #ffffff;
  max-height: 180px;
  overflow: auto;
}

.assignee-group {
  display: grid;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6f0e8;
}

.assignee-group-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.assignee-group-head input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.assignee-group:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.assignee-group-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.assignee-group-items {
  display: grid;
  gap: 8px;
}

.cc-item,
.assignee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

.cc-item input,
.assignee-item input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.cc-hint,
.assignee-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: -6px;
}

.assign-title,
.assign-hint {
  text-align: center;
  display: block;
  width: 100%;
}

.assignee-summary {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
}

.helper {
  font-size: 13px;
  color: var(--muted);
}

.request-content-preview {
  padding: 14px 16px;
  border: 1px solid #b9d8c4;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9f5 100%);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-line;
  box-shadow: 0 10px 24px rgba(15, 31, 22, 0.08);
}

.ticket-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 5px 12px 5px 6px;
  border: 1px solid #8fc6a6;
  border-radius: 999px;
  background: #dff3e7;
  color: #11462b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  vertical-align: top;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(31, 122, 74, 0.12);
}

.ticket-meta-tag-label {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ticket-meta-tag-value {
  color: #11462b;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ticket-meta-tag-completed {
  border-color: #b9caf3;
  background: #e8efff;
  color: #1f4389;
}

.ticket-meta-tag-completed .ticket-meta-tag-label {
  background: #3b63bb;
}

.ticket-meta-tag-completed .ticket-meta-tag-value {
  color: #1f4389;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
}

.table th,
.table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--stroke);
  text-align: left;
  vertical-align: top;
}

.table th {
  background: #e6f0e8;
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 22, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999;
}

.modal.is-open {
  display: flex;
}

.modal-card {
  width: min(640px, 96vw);
  max-height: 90vh;
  overflow: auto;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  padding: 22px;
  box-shadow: 0 24px 60px rgba(15, 31, 22, 0.2);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.modal-close {
  border: 1px solid var(--stroke);
  background: #ffffff;
  color: var(--ink);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.ticket-row td {
  padding-top: 16px;
}

.ticket-message-row td {
  background: #f7faf6;
  border-top: 1px solid #dbe6dc;
  border-bottom: 2px solid #cfe0d4;
}

.ticket-row.ticket-group-alt td,
.ticket-group-alt td.ticket-group-alt {
  background: #f3f9f5;
}

.ticket-message-row.ticket-group-alt td {
  background: #eef7f0;
}

.ticket-message-cell {
  padding-top: 10px;
  padding-bottom: 18px;
}

.ticket-spacer td {
  padding: 0;
  height: 18px;
  border: none;
  background: transparent;
}

.ticket-spacer.ticket-group-alt td {
  background: transparent;
}

.ticket-message-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
}

.ticket-message-label {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.ticket-message-text {
  margin-top: 8px;
  color: var(--ink);
}

.ticket-message-lines {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.ticket-message-line {
  font-size: 13px;
  color: var(--ink-soft);
}

.ticket-message-line strong {
  color: var(--ink);
  font-weight: 700;
}

.ticket-message-line-label {
  font-weight: 700;
  color: var(--ink-soft);
}

.ticket-message-box {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7faf6;
  border: 1px solid #dbe6dc;
  color: var(--ink);
}

.ticket-message-box .ticket-message-meta {
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.ticket-message-box .ticket-message-text {
  font-size: 13px;
  color: var(--ink);
  margin-top: -2px;
}

.ticket-message-box .ticket-message-label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: 0 14px 28px rgba(15, 31, 22, 0.06);
  scrollbar-width: thin;
  scrollbar-color: #9ecbb3 #e6f0e8;
}

.table-scroll-wrap {
  margin-top: 12px;
}

.table-scroll .table {
  min-width: 720px;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.table-scroll::-webkit-scrollbar {
  height: 8px;
}

.table-scroll::-webkit-scrollbar-track {
  background: #e6f0e8;
  border-radius: 999px;
}

.table-scroll::-webkit-scrollbar-thumb {
  background: #9ecbb3;
  border-radius: 999px;
}

.table-scroll-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 38px;
  height: 38px;
  margin: 8px auto 0;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  color: var(--accent);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(15, 31, 22, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.table-scroll-btn::before,
.table-scroll-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  display: block;
}

.table-scroll-btn::before {
  transform: rotate(135deg);
}

.table-scroll-btn::after {
  transform: rotate(-45deg);
}

.table-scroll-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(15, 31, 22, 0.16);
}

.pagination-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 16px;
  color: var(--ink-soft);
  font-size: 14px;
}

.pagination-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.pagination-link,
.pagination-gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.pagination-link {
  border: 1px solid var(--stroke);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 10px 20px rgba(15, 31, 22, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pagination-link:hover {
  transform: translateY(-1px);
  border-color: #8fc6a6;
  background: #f3f9f5;
  box-shadow: 0 14px 24px rgba(15, 31, 22, 0.12);
}

.pagination-link.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
  pointer-events: none;
}

.pagination-gap {
  min-width: auto;
  padding: 0 4px;
  color: var(--ink-soft);
}

.status-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.status-yet {
  background: #fff5c2;
  color: #7a5b00;
}

.status-progress {
  background: #ffd6d6;
  color: #8a1f1f;
}

.status-complete {
  background: #d8f3dc;
  color: #1b5e20;
}

.status-reopened {
  background: #dbe9ff;
  color: #1f4f8a;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.role-admin {
  background: #e7f1ff;
  color: #0b5ed7;
}

.role-staff {
  background: #e6f0e8;
  color: #1b5e20;
}

.eta-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.eta-red {
  background: #ffe4e4;
  color: #8a1f1f;
}

.eta-orange {
  background: #ffe9c6;
  color: #8a4a00;
}

.eta-green {
  background: #d8f3dc;
  color: #1b5e20;
}

.eta-black {
  background: #2f2f2f;
  color: #ffffff;
}

.eta-week {
  background: #efe6ff;
  color: #4b2e83;
}

.completion-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.completion-early {
  background: #d8f3dc;
  color: #1b5e20;
}

.completion-ontime {
  background: #e6f0e8;
  color: #155a36;
}

.completion-slight-delay {
  background: #fff5c2;
  color: #7a5b00;
}

.completion-delay {
  background: #ffe9c6;
  color: #8a4a00;
}

.completion-elapsed {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #6b756c;
}

.completion-elapsed.completion-early,
.completion-elapsed.completion-ontime,
.completion-elapsed.completion-slight-delay,
.completion-elapsed.completion-delay {
  background: none;
  padding: 0;
  border-radius: 0;
}

.completion-elapsed.completion-early {
  color: #1b5e20;
}

.completion-elapsed.completion-ontime {
  color: #155a36;
}

.completion-elapsed.completion-slight-delay {
  color: #7a5b00;
}

.completion-elapsed.completion-delay {
  color: #8a4a00;
}

.employee-highlight {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e7f1ff;
  color: #0b5ed7;
  font-weight: 700;
}

.photo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: #e6f0e8;
  border: 1px solid #1f7a4a;
  color: #1f7a4a;
  font-weight: 600;
  font-size: 12px;
}

.photo-link:hover {
  background: #1f7a4a;
  color: #ffffff;
}

.footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 14px;
}

.notice {
  padding: 14px 16px;
  background: #e7f4ec;
  border: 1px solid #b8ddc7;
  border-radius: 12px;
  color: #1f5b3a;
}

.notice-error {
  background: #fdecea;
  border: 1px solid #f4b5b5;
  color: #8a1f1f;
}

.success-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

@media (max-width: 720px) {
  :root {
    --btn-min-width: 120px;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .update-form {
    grid-template-columns: 1fr;
  }

  .success-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .success-actions .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(15, 31, 22, 0.18);
  }

  .success-actions .btn-outline {
    background: #ffffff;
  }

  .table-scroll {
    border-radius: 14px;
    scrollbar-width: none;
  }

  .table-scroll::-webkit-scrollbar {
    height: 0;
  }

  .table-scroll-btn {
    display: flex;
    align-items: center;
    gap: 6px;
  }
}

