/* =========================================================
   Global telecaller UI — components, forms, tables, DataTables
   Linked from FirstPage / standalone shells. No page-local CSS.
   ========================================================= */

body {
  font-family: 'Inter', sans-serif;
}

/* ---- Modals ---- */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 1.5rem;
}
.modal.in,
.modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.modal-dialog {
  width: 100%;
  max-width: 48rem;
  margin: auto;
}
.modal-content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}
.modal-header,
.modal-body,
.modal-footer {
  padding: 1.25rem 1.5rem;
}
.modal-header {
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-footer {
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.modal .close {
  background: transparent;
  border: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}
.modal .close:hover {
  color: #475569;
}

/* ---- Forms ---- */
.form-control,
.input-sm,
select.form-control,
textarea.form-control {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  color: #334155;
  font-size: 0.75rem;
  line-height: 1.25rem;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.form-control:focus,
.input-sm:focus,
select.form-control:focus,
textarea.form-control:focus {
  border-color: #4f46e5;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}
.form-control[disabled],
.form-control[readonly] {
  background: #f8fafc;
  color: #64748b;
  opacity: 1;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  padding: 0.5rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
  text-decoration: none !important;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:hover,
.btn:focus {
  text-decoration: none;
  outline: none;
}
.btn-sm {
  padding: 0.375rem 0.625rem;
  font-size: 0.75rem;
}
.btn-round {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  padding: 0;
  border-radius: 0.55rem;
}
.btn-round.btn-lg {
  width: 2.25rem;
  height: 2.25rem;
}
.btn-round.btn-sm,
.btn-round.btn-xs {
  width: 2rem;
  height: 2rem;
}
.btn-default {
  background: #ffffff;
  color: #334155;
  border-color: #cbd5e1;
}
.btn-default:hover,
.btn-default:focus {
  background: #f8fafc;
  color: #0f172a;
  border-color: #94a3b8;
}
.btn-primary {
  background: #4f46e5;
  color: #ffffff;
  border-color: #4f46e5;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #4338ca;
  border-color: #4338ca;
  color: #ffffff;
}
.btn-success {
  background: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
}
.btn-success:hover,
.btn-success:focus {
  background: #15803d;
  border-color: #15803d;
  color: #ffffff;
}
.btn-danger {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}
.btn-danger:hover,
.btn-danger:focus {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
}
.btn-warning {
  background: #f59e0b;
  color: #ffffff;
  border-color: #f59e0b;
}
.btn-warning:hover,
.btn-warning:focus {
  background: #d97706;
  border-color: #d97706;
  color: #ffffff;
}
.btn-info {
  background: #0ea5e9;
  color: #ffffff;
  border-color: #0ea5e9;
}
.btn-info:hover,
.btn-info:focus {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
}

/* ---- Button groups & dropdowns ---- */
.btn-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn {
  position: relative;
}
.btn-group > .btn + .btn {
  margin-left: 0.25rem;
}
.dropdown-toggle .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.25rem;
  vertical-align: middle;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
/* Action dropdowns: hide by default (do NOT target datetimepicker widget) */
.dropdown-menu:not(.bootstrap-datetimepicker-widget) {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1060;
  float: left;
  min-width: 11.5rem;
  margin: 0.35rem 0 0;
  padding: 0.35rem;
  list-style: none;
  text-align: left;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 18px 28px -8px rgba(15, 23, 42, 0.18), 0 8px 12px -6px rgba(15, 23, 42, 0.1);
}
.open > .dropdown-menu:not(.bootstrap-datetimepicker-widget),
.btn-group.open > .dropdown-menu:not(.bootstrap-datetimepicker-widget) {
  display: block;
}
.dropdown-menu.dropdown-menu-right,
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu > li {
  list-style: none;
  margin: 0;
}
.dropdown-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.55rem;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  background: #f1f5f9;
  color: #0f172a;
}
.dropdown-menu > li > a i,
.dropdown-menu > li > a .fa,
.dropdown-menu > li > a .glyphicon {
  width: 1rem;
  text-align: center;
  color: #64748b;
}

/* ---- Tables ---- */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  background: #ffffff;
  color: #334155;
  font-size: 0.75rem;
}
.table-bordered {
  border: 1px solid #e2e8f0;
  border-radius: 0.9rem;
  overflow: hidden;
}
.table > thead > tr > th,
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td {
  padding: 0.75rem;
  border-top: 1px solid #e2e8f0;
  vertical-align: middle;
}
.table > thead > tr > th {
  border-bottom: 1px solid #e2e8f0;
  border-top: 0;
  background: #f8fafc;
  color: #475569;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
}
.label-success {
  background: #dcfce7;
  color: #166534;
}
.label-danger {
  background: #fee2e2;
  color: #991b1b;
}
.label-primary,
.label-info {
  background: #dbeafe;
  color: #1d4ed8;
}
.label-warning {
  background: #fef3c7;
  color: #92400e;
}

/* ---- DataTables length / filter / pagination ---- */
.dataTables_wrapper {
  clear: both;
  position: relative;
}
.dataTables_wrapper .dataTables_length {
  float: left;
  margin-bottom: 0.75rem;
}
.dataTables_wrapper .dataTables_filter {
  float: right;
  margin-bottom: 0.75rem;
}
.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  margin: 0 !important;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  line-height: 1.25;
}
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_length select.form-control,
.dataTables_wrapper .dataTables_length select.input-sm {
  width: auto !important;
  min-width: 4.25rem;
  max-width: 6rem;
  min-height: 2rem !important;
  height: 2rem !important;
  display: inline-block !important;
  padding: 0.2rem 1.75rem 0.2rem 0.5rem !important;
  margin: 0 !important;
  background-color: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  box-shadow: none;
}
.dataTables_wrapper .dataTables_filter input {
  width: 12rem !important;
  min-height: 2rem !important;
  height: 2rem !important;
  margin-left: 0.5rem;
  padding: 0.25rem 0.625rem !important;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-size: 0.75rem;
}
.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.75rem;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}
.dataTables_wrapper .dataTables_paginate {
  display: flex !important;
  align-items: center;
  gap: 0.25rem;
  float: right;
  padding-top: 0.75rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0.35rem 0.65rem !important;
  margin: 0 0.1rem !important;
  border-radius: 0.5rem !important;
  border: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
  color: #334155 !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: none !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #f1f5f9 !important;
  color: #0f172a !important;
  border-color: #cbd5e1 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.active {
  background: #4f46e5 !important;
  color: #ffffff !important;
  border-color: #4f46e5 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  opacity: 0.45;
  cursor: not-allowed !important;
}
.dataTables_wrapper .dataTables_processing {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 0.75rem !important;
  color: #475569 !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}
/* Empty / zero-records row — center across full table (overrides table text-left) */
table.dataTable td.dataTables_empty,
.dataTables_wrapper table td.dataTables_empty,
#loadBody table td.dataTables_empty {
  text-align: center !important;
  vertical-align: middle !important;
  padding: 2.75rem 1rem !important;
  color: #64748b !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
}
.dataTables_wrapper.dt-hide-filter .dataTables_filter {
  display: none !important;
}

/* Compact tables inside shell */
#loadBody table.dataTable,
#loadBody table#example,
#loadBody table {
  width: 100% !important;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
}
#loadBody table.dataTable thead th,
#loadBody table#example thead th,
#loadBody table thead th {
  padding: 0.7rem 0.85rem !important;
  vertical-align: middle;
  background: #f8fafc !important;
  color: #64748b !important;
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid #e2e8f0 !important;
  border-top: 0 !important;
  white-space: nowrap;
}
#loadBody table.dataTable tbody td,
#loadBody table#example tbody td,
#loadBody table tbody td {
  padding: 0.65rem 0.85rem !important;
  vertical-align: middle !important;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #334155;
  background: #ffffff !important;
  border-bottom: 1px solid #f1f5f9 !important;
}
#loadBody table.dataTable tbody tr,
#loadBody table#example tbody tr {
  height: auto;
  background: #ffffff !important;
}
#loadBody table.dataTable tbody tr.odd td,
#loadBody table.dataTable tbody tr.even td,
#loadBody table#example tbody tr.odd td,
#loadBody table#example tbody tr.even td {
  background: #ffffff !important;
}
#loadBody table.dataTable tbody tr.odd:hover td,
#loadBody table.dataTable tbody tr.even:hover td,
#loadBody table#example tbody tr.odd:hover td,
#loadBody table#example tbody tr.even:hover td {
  background: #f8fafc !important;
}
#loadBody table.dataTable.stripe tbody tr.odd,
#loadBody table.dataTable.display tbody tr.odd {
  background-color: #ffffff !important;
}

#loadBody .table-scroll,
#loadBody .overflow-x-auto:has(table),
#loadBody .overflow-x-auto:has(.dataTables_wrapper) {
  overflow: visible !important;
}
#loadBody .table-shell,
#loadBody .rounded-xl.border.overflow-hidden:has(table),
#loadBody .rounded-xl.border.overflow-hidden:has(.dataTables_wrapper) {
  overflow: visible !important;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

/* Compact gear / autodial controls in tables */
#loadBody .btn-group > .btn.dropdown-toggle,
#loadBody table .btn.btn-sm.btn-round,
#loadBody table .btn.btn-default.btn-sm,
#loadBody table .btn-round {
  width: 2rem !important;
  height: 2rem !important;
  min-width: 2rem !important;
  min-height: 2rem !important;
  padding: 0 !important;
  border-radius: 0.5rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  box-shadow: none !important;
  font-size: 0.75rem !important;
}
#loadBody table .btn.btn-sm.btn-round:hover,
#loadBody .btn-group > .btn.dropdown-toggle:hover,
#loadBody table .btn-round:hover {
  background: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
  color: #0f172a !important;
}
#loadBody table .btn-round.btn-autodial-on {
  background: #eef2ff !important;
  border-color: #c7d2fe !important;
  color: #4f46e5 !important;
}
#loadBody table .btn .caret {
  margin-left: 0.15rem;
}
#loadBody table center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
#loadBody .btn-round {
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 0.5rem !important;
  padding: 0 !important;
}

/* Kill legacy glyphicon empty boxes when FA is used */
#loadBody .glyphicon {
  font-family: inherit;
}

/* ---- Modal layout polish ---- */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.modal-header .modal-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  order: 0;
}
.modal-header .close {
  order: 1;
  margin-left: auto;
}
.modal-dialog.modal-sm {
  max-width: 28rem;
}
.modal-dialog.modal-xl {
  max-width: 64rem;
}
.modal-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.modal-form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 640px) {
  .modal-form-row,
  .modal-form-row-3 {
    grid-template-columns: 1fr;
  }
}
.schedule-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.schedule-row > input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}
.schedule-row .input-group,
.schedule-row .date-field {
  flex: 1 1 auto;
  min-width: 0;
}
.modal-field .form-control,
.modal-field select.form-control {
  background: #ffffff !important;
}

/* Bootstrap-like input group for datepicker */
.input-group {
  position: relative;
  display: flex;
  width: 100%;
  align-items: stretch;
}
.input-group .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-left: 0;
  border-radius: 0 0.75rem 0.75rem 0;
  white-space: nowrap;
}

/* Date field with calendar button (Flatpickr) */
.date-field {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}
.date-field .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-right: 0.75rem;
}
.date-field-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 2.75rem;
  padding: 0 0.85rem;
  border: 1px solid #cbd5e1;
  border-left: 0;
  border-radius: 0 0.75rem 0.75rem 0;
  background: #f8fafc;
  color: #475569;
  cursor: pointer;
}
.date-field-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

/* Flatpickr theme overrides */
.flatpickr-calendar {
  z-index: 2300 !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 0.9rem !important;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.18) !important;
  font-family: 'Inter', sans-serif;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover {
  background: #4f46e5 !important;
  border-color: #4f46e5 !important;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eef2ff;
}
.numInputWrapper span {
  border: 0;
}
.dropdown-menu.dropdown-menu-right,
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

/* Call / FollowUp lead summary layout */
.lead-detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 1rem;
  align-items: start;
}
@media (max-width: 900px) {
  .lead-detail-layout {
    grid-template-columns: 1fr;
  }
}
.lead-summary-card {
  background: #0f172a;
  color: #f8fafc;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.lead-summary-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}
.lead-summary-row:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.lead-summary-row i {
  width: 1rem;
  color: #94a3b8;
  text-align: center;
}
.lead-summary-sep {
  opacity: 0.5;
  margin: 0 0.15rem;
}
.lead-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}
.lead-summary-actions .btn {
  flex: 1 1 auto;
  min-width: 4.5rem;
}
.lead-summary-actions .btn-default {
  background: #1e293b;
  border-color: #334155;
  color: #e2e8f0;
}
.lead-summary-actions .btn-default:hover {
  background: #334155;
  color: #fff;
}
.lead-history-panel {
  min-width: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.9rem;
  padding: 0.75rem;
}

/* Legacy quote-box fallback (other pages) */
.quote-box {
  overflow: hidden;
  border-radius: 1rem;
  background: #0f172a;
  color: #f8fafc;
  width: 100%;
  max-width: 20rem;
  box-shadow: none;
  padding: 1rem;
}
.quote-box .btn-info {
  background: #334155 !important;
  border-color: #475569 !important;
  color: #fff !important;
}
.quote-text {
  font-size: 0.8rem;
  font-weight: 600;
}
blockquote {
  border-left: none;
  margin: 0;
  padding: 0;
}

/* ---- Bootstrap Notify toasts (Bootstrap alert CSS is not loaded) ---- */
[data-notify="container"] {
  position: fixed !important;
  z-index: 10050 !important;
  width: min(22rem, calc(100vw - 1.5rem)) !important;
  max-width: 22rem !important;
  margin: 0 !important;
  padding: 0.85rem 2.25rem 0.85rem 1rem !important;
  border-radius: 0.9rem !important;
  border: 1px solid transparent !important;
  box-shadow: 0 12px 28px -8px rgba(15, 23, 42, 0.28) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  pointer-events: auto !important;
  float: none !important;
  left: auto !important;
}
[data-notify="container"][data-notify-position="top-right"] {
  right: 1rem !important;
}
[data-notify="container"][data-notify-position="top-left"] {
  left: 1rem !important;
  right: auto !important;
}
[data-notify="container"][data-notify-position="bottom-right"] {
  right: 1rem !important;
  bottom: auto;
}
[data-notify="container"] .close,
[data-notify="container"] [data-notify="dismiss"] {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  float: none;
  opacity: 0.55;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.15rem;
}
[data-notify="container"] .close:hover,
[data-notify="container"] [data-notify="dismiss"]:hover {
  opacity: 1;
}
[data-notify="title"] {
  display: block;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
[data-notify="message"] {
  display: block;
  opacity: 0.95;
}
[data-notify="progressbar"] {
  display: none !important;
}
[data-notify="container"].alert-success,
[data-notify="container"].alert-info {
  background: #ecfdf5 !important;
  border-color: #a7f3d0 !important;
  color: #065f46 !important;
}
[data-notify="container"].alert-warning {
  background: #fffbeb !important;
  border-color: #fde68a !important;
  color: #92400e !important;
}
[data-notify="container"].alert-danger {
  background: #fef2f2 !important;
  border-color: #fecaca !important;
  color: #991b1b !important;
}


