body {
  font-family: "IBM Plex Sans", "Inter", system-ui, sans-serif;
}

.broadcast-shell,
.support-page-shell {
  border-color: rgb(229, 231, 235);
  background: rgb(255, 255, 255);
}

.dark .broadcast-shell,
.dark .support-page-shell {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(3, 10, 30, 0.94), rgba(3, 10, 30, 0.88));
}

.broadcast-form-panel {
  border-color: rgb(229, 231, 235);
  background: rgb(249, 250, 251);
}

.dark .broadcast-form-panel {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.menu-item {
  display: flex;
  align-items: center;
  border-radius: 1rem;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.menu-item-text {
  color: inherit;
}

.menu-item-active {
  background: linear-gradient(135deg, rgba(70, 95, 255, 0.18), rgba(70, 95, 255, 0.08));
  color: rgb(70, 95, 255);
}

.dark .menu-item-active {
  background: rgba(70, 95, 255, 0.16);
  color: rgb(147, 161, 255);
}

.menu-item-inactive {
  color: rgb(75, 85, 99);
}

.menu-item-inactive:hover {
  background: rgb(243, 244, 246);
  color: rgb(17, 24, 39);
}

.dark .menu-item-inactive {
  color: rgb(156, 163, 175);
}

.dark .menu-item-inactive:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgb(243, 244, 246);
}

.field-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(55, 65, 81);
}

.dark .field-label {
  color: rgb(229, 231, 235);
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  border-radius: 0.875rem;
  border: 1px solid rgb(229, 231, 235);
  background: rgb(255, 255, 255);
  padding: 0.75rem 0.95rem;
  font-size: 0.95rem;
  color: rgb(17, 24, 39);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: rgb(70, 95, 255);
  box-shadow: 0 0 0 4px rgba(70, 95, 255, 0.12);
}

.field-textarea {
  min-height: 7rem;
  resize: vertical;
}

.dark .field-input,
.dark .field-select,
.dark .field-textarea {
  border-color: rgb(55, 65, 81);
  background: rgba(17, 24, 39, 0.72);
  color: rgb(243, 244, 246);
}

.dark .field-input::placeholder,
.dark .field-textarea::placeholder {
  color: rgb(107, 114, 128);
}

.primary-btn,
.secondary-btn,
.danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.875rem;
  padding: 0.72rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, rgb(70, 95, 255), rgb(56, 78, 216));
  color: white;
  box-shadow: 0 10px 20px rgba(70, 95, 255, 0.22);
}

.primary-btn:hover {
  filter: brightness(1.05);
}

.secondary-btn {
  border: 1px solid rgb(209, 213, 219);
  background: rgb(255, 255, 255);
  color: rgb(55, 65, 81);
}

.secondary-btn:hover {
  background: rgb(243, 244, 246);
}

.dark .secondary-btn {
  border-color: rgb(55, 65, 81);
  background: rgba(255, 255, 255, 0.04);
  color: rgb(229, 231, 235);
}

.dark .secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.danger-btn {
  border: 1px solid rgba(239, 68, 68, 0.18);
  background: rgba(239, 68, 68, 0.12);
  color: rgb(185, 28, 28);
}

.danger-btn:hover {
  background: rgba(239, 68, 68, 0.18);
}

.dark .danger-btn {
  border-color: rgba(248, 113, 113, 0.24);
  background: rgba(248, 113, 113, 0.12);
  color: rgb(252, 165, 165);
}

.primary-btn:disabled,
.secondary-btn:disabled,
.danger-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.table-shell {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgb(229, 231, 235);
}

.dark .table-shell {
  border-color: rgb(31, 41, 55);
}

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

.data-table thead th {
  background: rgb(249, 250, 251);
  padding: 0.95rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgb(107, 114, 128);
  text-transform: uppercase;
}

.dark .data-table thead th {
  background: rgba(255, 255, 255, 0.04);
  color: rgb(156, 163, 175);
}

.data-table tbody td {
  border-top: 1px solid rgb(229, 231, 235);
  padding: 1rem;
  vertical-align: top;
  font-size: 0.92rem;
  color: rgb(75, 85, 99);
}

.dark .data-table tbody td {
  border-top-color: rgb(31, 41, 55);
  color: rgb(209, 213, 219);
}

.data-table-dark thead th {
  background: rgba(255, 255, 255, 0.02);
  color: rgb(229, 231, 235);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.data-table-dark tbody td {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgb(229, 231, 235);
  background: rgba(17, 24, 39, 0.55);
}

.data-table-dark tbody tr:hover td {
  background: rgba(31, 41, 55, 0.8);
}

@media (max-width: 767px) {
  .payments-page-shell {
    padding: 1rem;
  }

  .payments-page-title {
    font-size: 1.6rem;
  }

  .payments-summary-strip {
    width: 100%;
  }

  .payments-summary-pill {
    flex: 1 1 0;
    min-width: 0;
  }
}

.plans-table thead th {
  background: rgb(249, 250, 251);
  color: rgb(107, 114, 128);
}

.plans-table tbody td {
  background: rgb(255, 255, 255);
  color: rgb(31, 41, 55);
}

.plans-table tbody tr:hover td {
  background: rgb(248, 250, 252);
}

.dark .plans-table thead th {
  background: rgba(255, 255, 255, 0.02);
  color: rgb(229, 231, 235);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dark .plans-table tbody td {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgb(229, 231, 235);
  background: rgba(17, 24, 39, 0.55);
}

.dark .plans-table tbody tr:hover td {
  background: rgba(31, 41, 55, 0.8);
}

.plans-shell {
  border-color: rgb(229, 231, 235);
  background: rgb(255, 255, 255);
}

.dark .plans-shell {
  border-color: rgb(31, 41, 55);
  background: rgb(3, 7, 18);
}

.payments-page-shell {
  display: grid;
  gap: 1.5rem;
  border-color: rgb(229, 231, 235);
  background: rgb(255, 255, 255);
}

.dark .payments-page-shell {
  border-color: rgb(31, 41, 55);
  background: rgb(3, 7, 18);
}

.payments-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.payments-page-title {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
}

.dark .payments-page-title {
  color: rgb(255, 255, 255);
}

.payments-page-subtitle {
  margin-top: 0.5rem;
  max-width: 42rem;
  font-size: 0.95rem;
  color: rgb(107, 114, 128);
}

.dark .payments-page-subtitle {
  color: rgb(156, 163, 175);
}

.payments-summary-strip {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.payments-summary-pill {
  min-width: 9.5rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.8rem 1rem;
}

.payments-summary-pill span {
  display: block;
  font-size: 0.78rem;
  color: rgb(107, 114, 128);
}

.payments-summary-pill strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
}

.dark .payments-summary-pill span {
  color: rgb(156, 163, 175);
}

.dark .payments-summary-pill strong {
  color: rgb(255, 255, 255);
}

.payments-chart-panel {
  width: 100%;
}

.payments-table-shell {
  border-color: rgb(229, 231, 235);
}

.dark .payments-table-shell {
  border-color: rgba(255, 255, 255, 0.08);
}

.payments-user-cell,
.payments-amount-cell {
  font-weight: 600;
  color: rgb(17, 24, 39);
}

.dark .payments-user-cell,
.dark .payments-amount-cell {
  color: rgb(255, 255, 255);
}

.payments-provider-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.05);
  padding: 0.32rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(71, 85, 105);
}

.dark .payments-provider-pill {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgb(203, 213, 225);
}

.plans-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgb(229, 231, 235);
}

.dark .plans-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plans-title {
  color: rgb(17, 24, 39);
}

.plans-subtitle {
  color: rgb(107, 114, 128);
}

.dark .plans-title {
  color: rgb(255, 255, 255);
}

.dark .plans-subtitle {
  color: rgb(156, 163, 175);
}

.plans-toolbar {
  flex-shrink: 0;
}

.plans-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 320px;
  border-radius: 1rem;
  border: 1px solid rgb(229, 231, 235);
  background: rgb(249, 250, 251);
  padding: 0.35rem;
}

.dark .plans-search {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.plans-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.75rem 0.85rem;
  color: rgb(17, 24, 39);
  outline: none;
}

.plans-search-input::placeholder {
  color: rgb(156, 163, 175);
}

.dark .plans-search-input {
  color: rgb(255, 255, 255);
}

.dark .plans-search-input::placeholder {
  color: rgb(107, 114, 128);
}

.plans-search-button {
  flex-shrink: 0;
  border-radius: 0.875rem;
  border: 1px solid rgb(209, 213, 219);
  background: rgb(255, 255, 255);
  padding: 0.8rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgb(31, 41, 55);
  transition: background 0.2s ease;
}

.plans-search-button:hover {
  background: rgb(243, 244, 246);
}

.dark .plans-search-button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgb(255, 255, 255);
}

.dark .plans-search-button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.plans-create-btn {
  min-width: 170px;
  white-space: nowrap;
}

.plans-table-wrap {
  border-color: rgb(229, 231, 235);
}

.dark .plans-table-wrap {
  border-color: rgba(255, 255, 255, 0.1);
}

.admin-list-shell {
  border-color: rgb(229, 231, 235);
  background: rgb(255, 255, 255);
}

.dark .admin-list-shell {
  border-color: rgb(31, 41, 55);
  background: rgb(3, 7, 18);
}

.admin-list-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgb(229, 231, 235);
}

.dark .admin-list-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.admin-list-title {
  color: rgb(17, 24, 39);
}

.dark .admin-list-title {
  color: rgb(255, 255, 255);
}

.admin-list-subtitle {
  color: rgb(107, 114, 128);
}

.dark .admin-list-subtitle {
  color: rgb(156, 163, 175);
}

.admin-toolbar {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .admin-toolbar {
    align-items: center;
    flex-direction: row;
  }
}

.admin-search {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgb(229, 231, 235);
  background: rgb(249, 250, 251);
  padding: 0.25rem;
}

.dark .admin-search {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.admin-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.68rem 0.8rem;
  color: rgb(17, 24, 39);
  font-size: 0.9rem;
  outline: none;
}

.admin-search-input::placeholder {
  color: rgb(156, 163, 175);
}

.dark .admin-search-input {
  color: rgb(255, 255, 255);
}

.dark .admin-search-input::placeholder {
  color: rgb(107, 114, 128);
}

.admin-search-select {
  min-width: 138px;
  border: 0;
  border-left: 1px solid rgb(229, 231, 235);
  background: transparent;
  padding: 0.68rem 0.8rem;
  color: rgb(55, 65, 81);
  font-size: 0.9rem;
  outline: none;
}

.dark .admin-search-select {
  border-left-color: rgba(255, 255, 255, 0.08);
  color: rgb(229, 231, 235);
}

.admin-search-button {
  flex-shrink: 0;
  border-radius: 0.875rem;
  border: 1px solid rgb(209, 213, 219);
  background: rgb(255, 255, 255);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgb(31, 41, 55);
  transition: background 0.2s ease;
}

.admin-search-button:hover {
  background: rgb(243, 244, 246);
}

.dark .admin-search-button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgb(255, 255, 255);
}

.dark .admin-search-button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.admin-create-btn {
  min-width: 154px;
  white-space: nowrap;
}

.admin-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 1.5rem;
  border: 1px solid rgb(229, 231, 235);
}

.dark .admin-table-wrap {
  border-color: rgba(255, 255, 255, 0.1);
}

.admin-compact-table thead th {
  background: rgb(249, 250, 251);
  color: rgb(107, 114, 128);
  padding: 0.9rem 0.85rem;
}

.admin-compact-table tbody td {
  background: rgb(255, 255, 255);
  color: rgb(31, 41, 55);
  padding: 0.95rem 0.85rem;
  line-height: 1.4;
}

.admin-compact-table tbody tr:hover td {
  background: rgb(248, 250, 252);
}

.dark .admin-compact-table thead th {
  background: rgba(255, 255, 255, 0.02);
  color: rgb(229, 231, 235);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dark .admin-compact-table tbody td {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgb(229, 231, 235);
  background: rgba(17, 24, 39, 0.55);
}

.dark .admin-compact-table tbody tr:hover td {
  background: rgba(31, 41, 55, 0.8);
}

.table-main {
  font-weight: 600;
  color: inherit;
  line-height: 1.35;
}

.table-sub {
  margin-top: 0.22rem;
  color: rgb(107, 114, 128);
  font-size: 0.83rem;
  line-height: 1.4;
}

.dark .table-sub {
  color: rgb(156, 163, 175);
}

.table-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.action-group {
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-wrap: nowrap;
  align-items: center;
}

.icon-btn-success {
  background: rgba(34, 197, 94, 0.16);
  color: rgb(34, 197, 94);
}

.icon-btn-success:hover {
  background: rgba(34, 197, 94, 0.24);
}

.icon-btn-warning {
  background: rgba(245, 158, 11, 0.18);
  color: rgb(217, 119, 6);
}

.icon-btn-warning:hover {
  background: rgba(245, 158, 11, 0.28);
}

.dark .icon-btn-warning {
  color: rgb(252, 211, 77);
}

.form-shell {
  border-color: rgb(229, 231, 235);
  background: rgb(255, 255, 255);
}

.dark .form-shell {
  border-color: rgb(31, 41, 55);
  background: rgba(255, 255, 255, 0.03);
}

.form-shell-header {
  border-bottom: 1px solid rgb(229, 231, 235);
}

.dark .form-shell-header {
  border-bottom-color: rgb(31, 41, 55);
}

.icon-btn {
  display: inline-flex;
  height: 2.35rem;
  width: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
}

.icon-btn-primary {
  background: rgba(70, 95, 255, 0.18);
  color: rgb(129, 151, 255);
}

.icon-btn-primary:hover {
  background: rgba(70, 95, 255, 0.28);
}

.icon-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgb(229, 231, 235);
}

.icon-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.icon-btn-danger {
  background: rgba(239, 68, 68, 0.18);
  color: rgb(252, 165, 165);
}

.icon-btn-danger:hover {
  background: rgba(239, 68, 68, 0.28);
}

details summary::-webkit-details-marker {
  display: none;
}

pre {
  margin: 0;
}

.table-actions-cell {
  white-space: nowrap;
  width: 1%;
}

.table-actions-cell--wide {
  min-width: 13.75rem;
}

.table-actions-cell--narrow {
  min-width: 8.5rem;
}

.users-table {
  min-width: 1450px;
}

.users-table .table-actions-cell--narrow {
  min-width: 9.5rem;
}

.table-mono {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.audit-payload {
  max-width: 30rem;
  max-height: 8rem;
  overflow: auto;
  white-space: pre-wrap;
  border-radius: 0.9rem;
  background: rgb(243, 244, 246);
  padding: 0.7rem 0.8rem;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgb(75, 85, 99);
}

.dark .audit-payload {
  background: rgba(255, 255, 255, 0.05);
  color: rgb(209, 213, 219);
}

@media (max-width: 767px) {
  .admin-list-shell,
  .plans-shell,
  .broadcast-shell,
  .support-page-shell,
  .payments-page-shell {
    padding: 1rem;
  }

  .admin-list-title,
  .plans-title {
    font-size: 1.7rem;
    line-height: 1.15;
  }

  .admin-search {
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.45rem;
  }

  .admin-search-select {
    width: 100%;
    min-width: 0;
    border-left: 0;
    border-top: 1px solid rgb(229, 231, 235);
    border-radius: 0.8rem;
    padding-top: 0.8rem;
  }

  .dark .admin-search-select {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .admin-search-button,
  .admin-create-btn {
    width: 100%;
  }

  .users-table {
    min-width: 0;
  }

  .responsive-table thead {
    display: none;
  }

  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }

  .responsive-table tbody tr {
    border-top: 1px solid rgb(229, 231, 235);
    padding: 0.85rem 0.95rem;
  }

  .dark .responsive-table tbody tr {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .responsive-table tbody td {
    border-top: 0;
    padding: 0.45rem 0;
  }

  .responsive-table tbody td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.28rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgb(107, 114, 128);
  }

  .dark .responsive-table tbody td::before {
    color: rgb(156, 163, 175);
  }

  .responsive-table .table-mono {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .responsive-table .table-actions-cell {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .responsive-table .table-actions-cell::before {
    margin-bottom: 0.55rem;
  }

  .responsive-table .action-group {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .responsive-table .action-group form {
    display: inline-flex;
  }

  .responsive-table .table-actions-cell .primary-btn,
  .responsive-table .table-actions-cell .secondary-btn,
  .responsive-table .table-actions-cell .danger-btn {
    width: 100%;
  }

  .responsive-table .flex.justify-end {
    justify-content: flex-start;
  }

  .audit-payload {
    max-width: none;
    max-height: 14rem;
    font-size: 0.74rem;
  }
}

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

.dashboard-hero,
.dashboard-panel,
.dashboard-kpi {
  border: 1px solid rgb(229, 231, 235);
  background: rgb(255, 255, 255);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
}

.dark .dashboard-hero,
.dark .dashboard-panel,
.dark .dashboard-kpi {
  border-color: rgb(31, 41, 55);
  background: rgba(3, 7, 18, 0.92);
  box-shadow: none;
}

.dashboard-hero {
  display: grid;
  gap: 1rem;
  border-radius: 1.75rem;
  padding: 1.5rem;
}

.dashboard-hero-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: rgba(70, 95, 255, 0.12);
  color: rgb(70, 95, 255);
  padding: 0.35rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.dark .dashboard-hero-badge {
  background: rgba(129, 151, 255, 0.14);
  color: rgb(147, 161, 255);
}

.dashboard-hero-title {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
}

.notification-bell {
  position: relative;
}

.notification-bell-badge {
  position: absolute;
  right: -0.2rem;
  top: -0.2rem;
  min-width: 1.4rem;
  border-radius: 999px;
  background: rgb(239, 68, 68);
  padding: 0.1rem 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  text-align: center;
  box-shadow: 0 0 0 3px rgb(255, 255, 255);
}

.dark .notification-bell-badge {
  box-shadow: 0 0 0 3px rgb(17, 24, 39);
}

.support-layout {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1280px) {
  .support-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
  }
}

.support-sidebar,
.support-chat-shell {
  border-radius: 1.5rem;
  border: 1px solid rgb(229, 231, 235);
  background: rgb(249, 250, 251);
}

.dark .support-sidebar,
.dark .support-chat-shell {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.support-sidebar-head,
.support-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgb(229, 231, 235);
  padding: 0.9rem 1rem 0.8rem;
}

.dark .support-sidebar-head,
.dark .support-chat-header {
  border-bottom-color: rgb(31, 41, 55);
}

.support-thread-list {
  display: flex;
  max-height: 68vh;
  flex-direction: column;
  gap: 0.5rem;
  overflow: auto;
  padding: 0.85rem;
}

.support-thread-item {
  display: block;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.7rem 0.8rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.support-thread-item:hover {
  transform: translateY(-1px);
  border-color: rgb(199, 210, 254);
}

.dark .support-thread-item {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 18, 45, 0.72);
}

.dark .support-thread-item:hover,
.support-thread-item-active {
  border-color: rgba(99, 102, 241, 0.45);
  background: rgba(70, 95, 255, 0.1);
}

.dark .support-thread-item-active {
  background: rgba(70, 95, 255, 0.14);
}

.support-thread-item-unread {
  border-left: 3px solid rgb(70, 95, 255);
  padding-left: calc(0.8rem - 2px);
}

.support-thread-item-unread .support-thread-title {
  font-weight: 800;
}

.support-thread-title {
  color: rgb(17, 24, 39);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.dark .support-thread-title {
  color: rgb(243, 244, 246);
}

.support-thread-user {
  margin-top: 0.2rem;
  color: rgb(107, 114, 128);
  font-size: 0.82rem;
  line-height: 1.35;
}

.dark .support-thread-user {
  color: rgb(148, 163, 184);
}

.support-thread-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.support-thread-meta {
  margin-top: 0.45rem;
  color: rgb(100, 116, 139);
  font-size: 0.74rem;
}

.dark .support-thread-meta {
  color: rgb(107, 114, 128);
}

.support-unread-badge {
  display: inline-flex;
  min-width: 1.45rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgb(70, 95, 255);
  padding: 0.1rem 0.38rem;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
}

.support-chat-title {
  color: rgb(17, 24, 39);
  font-size: 1.15rem;
  font-weight: 700;
}

.dark .support-chat-title {
  color: rgb(243, 244, 246);
}

.support-chat-subtitle {
  color: rgb(107, 114, 128);
  font-size: 0.88rem;
}

.dark .support-chat-subtitle {
  color: rgb(156, 163, 175);
}

.support-chat-messages {
  display: flex;
  max-height: 60vh;
  min-height: 21rem;
  flex-direction: column;
  gap: 0.75rem;
  overflow: auto;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.92), rgba(243, 244, 246, 0.92));
  padding: 0.9rem;
}

.dark .support-chat-messages {
  background: linear-gradient(180deg, rgba(3, 10, 30, 0.52), rgba(8, 18, 45, 0.64));
}

.support-message-row {
  display: flex;
}

.support-message-row-user {
  justify-content: flex-start;
}

.support-message-row-admin,
.support-message-row-system {
  justify-content: flex-end;
}

.support-message-bubble {
  max-width: min(82%, 46rem);
  border-radius: 1.1rem;
  padding: 0.8rem 0.9rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.support-message-bubble-user {
  background: rgba(255, 255, 255, 0.94);
  color: rgb(17, 24, 39);
}

.support-message-bubble-admin {
  background: linear-gradient(135deg, rgba(70, 95, 255, 0.94), rgba(56, 78, 216, 0.94));
  color: white;
}

.support-message-bubble-system {
  background: rgba(15, 23, 42, 0.07);
  color: rgb(51, 65, 85);
}

.dark .support-message-bubble-user {
  background: rgba(15, 23, 42, 0.82);
  color: rgb(243, 244, 246);
  box-shadow: none;
}

.dark .support-message-bubble-admin {
  box-shadow: none;
}

.dark .support-message-bubble-system {
  background: rgba(30, 41, 59, 0.78);
  color: rgb(226, 232, 240);
  box-shadow: none;
}

.support-message-meta {
  margin-bottom: 0.45rem;
  font-size: 0.73rem;
  font-weight: 600;
  opacity: 0.78;
}

.support-message-text {
  white-space: pre-wrap;
  line-height: 1.55;
}

.support-message-image-link {
  display: block;
  margin-top: 0.75rem;
}

.support-chat-image {
  max-width: 18rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.support-reply-form {
  display: grid;
  gap: 0.9rem;
  border-top: 1px solid rgb(229, 231, 235);
  padding: 1rem;
}

.dark .support-reply-form {
  border-top-color: rgb(31, 41, 55);
}

.support-empty-state {
  display: grid;
  min-height: 26rem;
  place-items: center;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.92), rgba(243, 244, 246, 0.92));
  text-align: center;
  padding: 2rem;
}

.dark .support-empty-state {
  background: linear-gradient(180deg, rgba(4, 13, 36, 0.74), rgba(8, 18, 45, 0.7));
}

@media (max-width: 767px) {
  .broadcast-form-panel {
    padding: 1rem;
  }

  .support-sidebar-head,
  .support-chat-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-thread-list {
    max-height: 36vh;
    padding: 0.75rem;
  }

  .support-chat-messages {
    min-height: 18rem;
    max-height: 50vh;
    padding: 0.8rem;
  }

  .support-message-bubble {
    max-width: 100%;
  }

  .support-chat-image {
    max-width: 100%;
  }

  .support-reply-form {
    padding: 0.85rem;
  }

  .support-reply-form .primary-btn,
  .support-reply-form .field-input {
    width: 100%;
  }
}

.dark .dashboard-hero-title {
  color: rgb(255, 255, 255);
}

.dashboard-hero-text,
.dashboard-panel-subtitle,
.dashboard-kpi-caption,
.dashboard-overview-label,
.progress-footnote,
.alert-item-text {
  color: rgb(107, 114, 128);
}

.dark .dashboard-hero-text,
.dark .dashboard-panel-subtitle,
.dark .dashboard-kpi-caption,
.dark .dashboard-overview-label,
.dark .progress-footnote,
.dark .alert-item-text {
  color: rgb(156, 163, 175);
}

.dashboard-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.83rem;
  color: rgb(107, 114, 128);
}

.dark .dashboard-hero-meta {
  color: rgb(156, 163, 175);
}

.dashboard-overview-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-overview-grid--compact {
  margin-bottom: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  .dashboard-overview-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

.dashboard-overview-item {
  display: grid;
  gap: 0.35rem;
  border-radius: 1.1rem;
  background: rgb(248, 250, 252);
  padding: 0.9rem 1rem;
}

.dark .dashboard-overview-item {
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-overview-item--compact {
  padding: 0.75rem 0.85rem;
}

.dashboard-overview-value {
  font-size: 1.08rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
}

.dark .dashboard-overview-value {
  color: rgb(255, 255, 255);
}

.dashboard-kpis {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

@media (min-width: 1280px) {
  .dashboard-kpis {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.dashboard-kpi {
  display: grid;
  gap: 0.45rem;
  border-radius: 1.4rem;
  padding: 1.15rem 1.1rem;
  position: relative;
  overflow: hidden;
}

.dashboard-kpi::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  height: 76px;
  width: 76px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.dark .dashboard-kpi::after {
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-kpi--brand {
  background: linear-gradient(135deg, rgba(70, 95, 255, 0.08), rgba(70, 95, 255, 0.03));
}

.dashboard-kpi--success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.02));
}

.dashboard-kpi--danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.02));
}

.dashboard-kpi--warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
}

.dashboard-kpi--muted {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.12), rgba(148, 163, 184, 0.04));
}

.dark .dashboard-kpi--brand,
.dark .dashboard-kpi--success,
.dark .dashboard-kpi--danger,
.dark .dashboard-kpi--warning,
.dark .dashboard-kpi--muted {
  background: rgba(3, 7, 18, 0.92);
}

.dashboard-kpi-title {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgb(75, 85, 99);
}

.dark .dashboard-kpi-title {
  color: rgb(209, 213, 219);
}

.dashboard-kpi-value {
  position: relative;
  z-index: 1;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
  color: rgb(17, 24, 39);
}

.dark .dashboard-kpi-value {
  color: rgb(255, 255, 255);
}

.dashboard-kpi-caption {
  position: relative;
  z-index: 1;
  font-size: 0.84rem;
  line-height: 1.45;
}

.dashboard-main-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1280px) {
  .dashboard-main-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-main-row--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.dashboard-panel {
  display: grid;
  gap: 1rem;
  border-radius: 1.5rem;
  padding: 1.25rem;
}

.dashboard-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.dashboard-panel-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
}

.dark .dashboard-panel-title {
  color: rgb(255, 255, 255);
}

.dashboard-panel-metric {
  border-radius: 999px;
  background: rgb(248, 250, 252);
  padding: 0.45rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
  white-space: nowrap;
}

.dark .dashboard-panel-metric {
  background: rgba(255, 255, 255, 0.05);
  color: rgb(255, 255, 255);
}

.line-chart {
  position: relative;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(70, 95, 255, 0.08), rgba(70, 95, 255, 0.01));
  padding: 0.9rem 0.8rem 0.4rem 3.9rem;
  overflow: hidden;
}

.line-chart--alt {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.01));
}

.dark .line-chart,
.dark .line-chart--alt {
  background: rgba(255, 255, 255, 0.03);
}

.line-chart-svg {
  display: block;
  width: 100%;
  height: 220px;
}

.line-chart-grid {
  stroke: rgba(148, 163, 184, 0.25);
  stroke-width: 1;
}

.dark .line-chart-grid {
  stroke: rgba(255, 255, 255, 0.08);
}

.line-chart-path {
  fill: none;
  stroke: rgb(70, 95, 255);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-chart-path--alt {
  stroke: rgb(34, 197, 94);
}

.line-chart-area {
  fill: rgba(70, 95, 255, 0.14);
}

.line-chart-area--alt {
  fill: rgba(34, 197, 94, 0.14);
}

.line-chart-dot {
  fill: rgb(70, 95, 255);
}

.line-chart-dot--alt {
  fill: rgb(34, 197, 94);
}

.line-chart-dot {
  cursor: pointer;
  transition: r 0.15s ease, filter 0.15s ease;
}

.line-chart-dot:hover {
  r: 5.5;
  filter: drop-shadow(0 0 8px rgba(70, 95, 255, 0.55));
}

.line-chart-dot--alt:hover {
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.55));
}

.line-chart-ylabels {
  position: absolute;
  left: 0.9rem;
  top: 0.8rem;
  bottom: 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.73rem;
  color: rgb(107, 114, 128);
}

.dark .line-chart-ylabels {
  color: rgb(156, 163, 175);
}

.line-chart-xlabels {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: 0.25rem;
  font-size: 0.72rem;
  color: rgb(107, 114, 128);
  text-align: center;
}

.dark .line-chart-xlabels {
  color: rgb(156, 163, 175);
}

.line-chart-tooltip {
  position: absolute;
  z-index: 5;
  min-width: 7rem;
  max-width: 13rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.65rem 0.8rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.line-chart-tooltip.is-visible {
  opacity: 1;
}

.line-chart-tooltip strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
}

.line-chart-tooltip span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.73rem;
  color: rgb(75, 85, 99);
}

.dark .line-chart-tooltip {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 14px 35px rgba(2, 6, 23, 0.45);
}

.dark .line-chart-tooltip strong {
  color: rgb(255, 255, 255);
}

.dark .line-chart-tooltip span {
  color: rgb(203, 213, 225);
}

.dashboard-chart-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  flex: 0 0 auto;
  margin-left: auto;
}

.chart-range-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  gap: 0.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.04);
  padding: 0.24rem;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

.dark .chart-range-switcher {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.chart-range-btn {
  border: 0;
  border-radius: 0.85rem;
  background: transparent;
  color: rgb(100, 116, 139);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.52rem 0.78rem;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.chart-range-btn:hover {
  color: rgb(17, 24, 39);
}

.chart-range-btn.is-active {
  background: rgba(70, 95, 255, 0.14);
  color: rgb(70, 95, 255);
}

.dark .chart-range-btn {
  color: rgb(156, 163, 175);
}

.dark .chart-range-btn:hover {
  color: rgb(255, 255, 255);
}

.dark .chart-range-btn.is-active {
  background: rgba(96, 112, 255, 0.22);
  color: rgb(186, 194, 255);
}

@media (max-width: 900px) {
  .dashboard-chart-controls {
    width: 100%;
    align-items: flex-start;
    margin-left: 0;
  }
}

.activity-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgb(75, 85, 99);
}

.dark .activity-legend {
  color: rgb(209, 213, 219);
}

.legend-dot {
  display: inline-flex;
  margin-right: 0.4rem;
  height: 0.6rem;
  width: 0.6rem;
  border-radius: 999px;
}

.legend-dot--brand {
  background: rgb(70, 95, 255);
}

.legend-dot--success {
  background: rgb(34, 197, 94);
}

.legend-dot--danger {
  background: rgb(239, 68, 68);
}

.activity-bars {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: end;
  min-height: 16rem;
}

.activity-bar-group {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
}

.activity-bar-stack {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.18rem;
  height: 12rem;
  width: 100%;
}

.activity-bar {
  width: 0.5rem;
  min-height: 4px;
  border-radius: 999px 999px 0 0;
}

.activity-bar--created {
  background: rgb(70, 95, 255);
}

.activity-bar--activated {
  background: rgb(34, 197, 94);
}

.activity-bar--expired {
  background: rgb(239, 68, 68);
}

.activity-bar-label {
  font-size: 0.7rem;
  color: rgb(107, 114, 128);
}

.dark .activity-bar-label {
  color: rgb(156, 163, 175);
}

.funnel-list,
.progress-list,
.alerts-list,
.mini-bars {
  display: grid;
  gap: 0.85rem;
}

.funnel-row,
.progress-row,
.mini-bar-row {
  display: grid;
  gap: 0.4rem;
}

.funnel-row-meta,
.progress-row-meta,
.mini-bar-row {
  font-size: 0.84rem;
}

.funnel-row-meta,
.progress-row-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.funnel-label,
.progress-label,
.mini-bar-label,
.alert-item-title {
  color: rgb(17, 24, 39);
  font-weight: 600;
}

.dark .funnel-label,
.dark .progress-label,
.dark .mini-bar-label,
.dark .alert-item-title {
  color: rgb(255, 255, 255);
}

.funnel-metric,
.progress-value,
.mini-bar-value,
.alert-item-value {
  color: rgb(75, 85, 99);
  font-variant-numeric: tabular-nums;
}

.dark .funnel-metric,
.dark .progress-value,
.dark .mini-bar-value,
.dark .alert-item-value {
  color: rgb(209, 213, 219);
}

.funnel-track,
.progress-track,
.mini-bar-track {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(241, 245, 249);
  height: 0.65rem;
}

.dark .funnel-track,
.dark .progress-track,
.dark .mini-bar-track {
  background: rgba(255, 255, 255, 0.06);
}

.funnel-fill,
.progress-fill,
.mini-bar-fill {
  height: 100%;
  border-radius: inherit;
}

.funnel-fill {
  background: linear-gradient(90deg, rgb(70, 95, 255), rgb(116, 136, 255));
}

.progress-fill--success {
  background: linear-gradient(90deg, rgb(34, 197, 94), rgb(74, 222, 128));
}

.progress-fill--warning {
  background: linear-gradient(90deg, rgb(245, 158, 11), rgb(251, 191, 36));
}

.progress-fill--danger {
  background: linear-gradient(90deg, rgb(239, 68, 68), rgb(248, 113, 113));
}

.progress-fill--muted {
  background: linear-gradient(90deg, rgb(100, 116, 139), rgb(148, 163, 184));
}

.progress-fill--brand {
  background: linear-gradient(90deg, rgb(70, 95, 255), rgb(129, 151, 255));
}

.mini-bar-fill {
  background: linear-gradient(90deg, rgb(70, 95, 255), rgb(129, 151, 255));
}

.dashboard-table {
  display: grid;
  gap: 0.35rem;
}

.compact-table-head,
.compact-table-row {
  display: grid;
  gap: 0.75rem;
  align-items: center;
}

.compact-table-head {
  padding: 0 0 0.45rem;
  border-bottom: 1px solid rgb(229, 231, 235);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgb(107, 114, 128);
}

.dark .compact-table-head {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: rgb(156, 163, 175);
}

.compact-table-row {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgb(243, 244, 246);
  font-size: 0.86rem;
  color: rgb(31, 41, 55);
}

.dark .compact-table-row {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  color: rgb(229, 231, 235);
}

.compact-table-head--plans,
.compact-table-row--plans {
  grid-template-columns: minmax(0, 2fr) 0.7fr 0.7fr 1fr;
}

.compact-table-head--locations,
.compact-table-row--locations {
  grid-template-columns: minmax(0, 1.8fr) 0.7fr 0.8fr;
}

.compact-table-head--partners,
.compact-table-row--partners {
  grid-template-columns: minmax(0, 1.6fr) 0.7fr 0.7fr 0.6fr;
}

.compact-empty {
  padding: 1rem 0;
  color: rgb(107, 114, 128);
  font-size: 0.9rem;
}

.dark .compact-empty {
  color: rgb(156, 163, 175);
}

.alert-item {
  display: grid;
  gap: 0.45rem;
  border-radius: 1rem;
  border: 1px solid rgb(229, 231, 235);
  background: rgb(249, 250, 251);
  padding: 0.95rem 1rem;
}

.dark .alert-item {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.alert-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.alert-item--success {
  border-color: rgba(34, 197, 94, 0.2);
}

.alert-item--warning {
  border-color: rgba(245, 158, 11, 0.2);
}

.alert-item--danger {
  border-color: rgba(239, 68, 68, 0.2);
}
