/* BUTTONS */
.btn {
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font-family: 'Gotham Pro', sans-serif;
  font-size: 14px; /* Button Medium 14px */
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}
.btn-sm {
  height: 28px !important;
  padding: 0 10px !important;
  font-size: 11px !important;
  border-radius: 6px !important;
}

/* Primary actions (Save / Confirm / Create) -> Green */
.btn-primary, .btn-success {
  background: var(--color-success) !important;
  color: #FFFFFF !important;
}
.btn-primary:hover, .btn-success:hover {
  background: var(--color-success-hover) !important;
  color: #FFFFFF !important;
}

/* Secondary actions (Edit / View / Manage) -> Blue outline */
.btn-outline, .btn-secondary {
  background: transparent !important;
  border: 1px solid var(--brand-primary) !important;
  color: var(--brand-primary) !important;
}
.btn-outline:hover, .btn-secondary:hover {
  background: rgba(0, 107, 220, 0.08) !important;
  color: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
}

/* Warning Actions -> Yellow */
.btn-warning {
  background: var(--color-warning) !important;
  color: #12151A !important;
}
.btn-warning:hover {
  background: #e5b022 !important;
  color: #12151A !important;
}

/* Destructive actions (Delete / Reject) -> Red */
.btn-danger, .btn-destructive {
  background: var(--color-danger) !important;
  color: #FFFFFF !important;
}
.btn-danger:hover, .btn-destructive:hover {
  background: var(--color-danger-hover) !important;
  color: #FFFFFF !important;
}

/* FORMS */
.form-group { margin-bottom: 14px; position: relative; } /* Internal Form Row Gap is 14px */
.section-title {
  font-family: 'Gotham Pro', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 4px;
}
.form-group label {
  display: block;
  font-family: 'Gotham Pro', sans-serif;
  font-size: 10px; /* Overline Regular All Caps 10px */
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px; /* Precise label spacing */
  font-weight: 400;
}
.form-control, select.form-control {
  width: 100%;
  background: #FFFFFF !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 8px !important;
  height: 40px !important; /* Dense, operational height */
  padding: 0 12px !important; /* Dense padding */
  font-family: 'Gotham Pro', sans-serif !important;
  font-size: 14px !important; /* Body 2 Regular 14px */
  color: var(--text-primary) !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box;
}
.form-control:focus, select.form-control:focus {
  outline: none !important;
  border-color: var(--border-focus) !important;
  box-shadow: 0 0 0 4px rgba(0, 107, 220, 0.08) !important;
}
.form-control::placeholder {
  color: var(--text-placeholder) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}
input[readonly], .form-control[readonly], select[readonly] {
  background: #F5F7FB !important;
  color: var(--text-placeholder) !important;
  border-color: var(--border-subtle) !important;
  cursor: not-allowed;
}
textarea.form-control {
  height: auto !important;
  min-height: 80px !important;
  padding: 12px 12px !important;
}

/* MODALS */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: var(--bg-sidebar);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  width: 400px;
  max-width: 90vw;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}
.modal-title {
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: var(--space-5);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
}

/* TABLES */
.table-view { width: 100%; border-collapse: collapse; }
.table-view th { 
  text-align: left; 
  padding: var(--space-4); 
  color: var(--text-muted); 
  font-size: var(--text-xs); 
  text-transform: uppercase; 
  border-bottom: 1px solid var(--border-subtle); 
}
.table-view td { 
  padding: var(--space-4); 
  border-bottom: 1px solid rgba(255,255,255,0.02); 
  font-size: var(--text-sm); 
}
.table-view tr { transition: background 0.2s; }
.table-view tr:hover td { background: var(--bg-hover); cursor: pointer; }

/* BADGES */
.status-badge { 
  padding: 4px 12px; 
  border-radius: 9999px; 
  font-size: var(--text-xs); 
  font-weight: 500;
  background: #e0f2fe; 
  color: #0284c7; 
  border: 1px solid #bae6fd;
  display: inline-flex; 
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.status-badge.missing { background: #fef3c7; color: #d97706; border-color: #fde68a; }
.status-badge.ready { background: #d1fae5; color: #059669; border-color: #a7f3d0; }
.status-badge.finalized { background: #e0f2fe; color: #0284c7; border-color: #bae6fd; }
.status-badge.cancelled { background: #fee2e2; color: #dc2626; border-color: #fecaca; }
.status-badge.archived { background: #f1f5f9; color: #475569; border-color: #e2e8f0; }
.status-badge.on-hold { background: #ffedd5; color: #ea580c; border-color: #fed7aa; }
.status-badge.passive { cursor: default; }
.badge {
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: var(--font-weight-semibold);
  background: rgba(56, 189, 248, 0.1);
  color: var(--brand-primary);
}

/* TOAST */
#toast {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  background: var(--color-success);
  color: white;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  box-shadow: var(--shadow-md);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: var(--z-toast);
}
#toast.show { transform: translateY(0); opacity: 1; }

/* UTILITIES */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.empty-state {
  height: 100%; display: flex; flex-direction: column; align-items: center;
  justify-content: center; color: var(--text-muted); font-size: var(--text-sm);
}
.btn-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-primary); color: #0f172a; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; transition: 0.2s; box-shadow: var(--shadow-sm);
}
.btn-circle:hover { background: var(--brand-primary-hover); color: white; transform: translateY(-1px); }

/* AUTOCOMPLETE DROPDOWN */
.ac-dropdown {
  position: absolute;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  z-index: 1000;
  margin-top: 4px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}
.ac-item {
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s, padding-left 0.2s;
  text-align: left;
}
.ac-item:last-child {
  border-bottom: none;
}
.ac-item:hover {
  background: rgba(56, 189, 248, 0.08);
  padding-left: 18px;
}
.ac-title {
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
}
.ac-sub {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

/* OPERATIONAL SHELL */
.op-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.op-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
}
.op-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.op-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-ghost {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  font-weight: 500;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
}
.status-dropdown-container {
  position: relative;
}
.op-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-left: 8px;
}
.btn-warning-ghost {
  background: #fef3c7;
  color: #d97706;
  border: 1px solid #fde68a;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-warning-ghost:hover {
  background: #fef08a;
  border-color: #fcd34d;
}
.op-module-nav {
  display: flex;
  gap: 4px;
  margin: 0 12px;
}
.op-icon-btn-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.op-icon-btn-wrap:hover, .op-icon-btn-wrap.active {
  background: rgba(255,255,255,0.08);
}
.op-icon-btn {
  width: 18px;
  height: 18px;
  filter: invert(0.6);
  transition: all 0.2s;
}
.op-icon-btn-wrap:hover .op-icon-btn, .op-icon-btn-wrap.active .op-icon-btn {
  filter: invert(1);
}
.search-container {
  display: flex;
  align-items: center;
  position: relative;
}
.op-search-input {
  width: 0;
  opacity: 0;
  padding: 0;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 32px;
  font-size: 12px;
}
.op-search-input.active {
  width: 200px;
  opacity: 1;
  padding: 0 12px;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.5);
  margin-left: 8px;
}
.op-module-container {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

/* GLOBAL APP SHELL HEADER */
.btn-nueva-orden {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  transition: all 0.2s;
  border-radius: 0;
}
.btn-nueva-orden:hover {
  color: #0f172a;
}
.btn-nueva-orden .plus-circle {
  width: 24px;
  height: 24px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}
.global-icon-btn-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background: transparent;
}
.global-icon {
  width: 18px;
  height: 18px;
  /* Default: #8F9AA5 */
  filter: invert(65%) sepia(10%) saturate(400%) hue-rotate(180deg) brightness(95%) contrast(90%);
  transition: all 0.2s ease;
}
.global-icon-btn-wrap:hover {
  background: rgba(0, 107, 220, 0.08);
}
.global-icon-btn-wrap:hover .global-icon {
  /* Hover: #006BDC */
  filter: invert(24%) sepia(98%) saturate(2745%) hue-rotate(206deg) brightness(93%) contrast(106%);
}
.global-icon-btn-wrap.active {
  background: #006BDC;
  border-radius: 14px; /* Active border-radius is 14px */
}
.global-icon-btn-wrap.active .global-icon {
  /* Active: white */
  filter: brightness(0) invert(1);
}
.btn-ghost-dark {
  background: transparent;
  border: none;
  color: #475569;
  font-size: 13px;
  cursor: pointer;
  padding: 6px 12px;
  transition: all 0.2s;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost-dark:hover {
  background: transparent;
  color: #0f172a;
}
.ac-item-light {
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s, padding-left 0.2s;
  text-align: left;
}
.ac-item-light:last-child {
  border-bottom: none;
}
.ac-item-light:hover {
  background: #f8fafc;
  padding-left: 18px;
}

/* GLOBAL SEARCH INPUT & PANEL OVERRIDES */
#global-search-input {
  width: 0;
  opacity: 0;
  padding: 0;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 32px;
  font-size: 12px;
}
#global-search-input.active {
  width: 200px;
  opacity: 1;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  margin-left: 8px;
  border-radius: 6px;
  color: #0f172a;
}
#global-search-input.active:focus {
  outline: none;
  border-color: #0052cc;
}

/* CUSTOM LIGHT STATUS DROPDOWN */
.status-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 160px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 4px;
  z-index: 2000;
}
.status-dd-item {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  transition: background 0.2s;
  font-size: 13px;
  color: #334155;
  text-align: left;
}
.status-dd-item:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.status-dd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.status-dd-dot.status-draft { background: #d97706; }
.status-dd-dot.status-ready { background: #059669; }
.status-dd-dot.status-finalized { background: #0284c7; }
.status-dd-dot.status-cancelled { background: #dc2626; }
.status-dd-dot.status-archived { background: #64748b; }

/* WORKSPACE CANVAS - LIGHT COMPONENT STYLES */

/* Card Layout Overrides & Spacing System */
.card {
  padding: 24px !important;
  background: #ffffff !important;
  border: 1px solid #E4E5E9 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px !important; /* Section Gap: 24px */
}

/* Table-to-Card transition: Floating modular row-cards */
.main-editor .table-view {
  border-collapse: separate;
  border-spacing: 0 8px;
  width: 100%;
}
.main-editor .table-view th {
  border-bottom: none;
  padding: 8px 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
}
.main-editor .table-view td {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px;
  transition: all 0.2s ease;
  color: #0f172a;
  opacity: 1 !important;
}
.main-editor .table-view td:nth-child(2) {
  /* Secondary column color managed by typography class */
}
.main-editor .table-view td:first-child {
  border-left: 1px solid #e2e8f0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.main-editor .table-view td:last-child {
  border-right: 1px solid #e2e8f0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.main-editor .table-view tr:hover td {
  background: #f8fafc;
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
}

/* User Role Badges for Light Theme */
.main-editor .badge {
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  display: inline-block;
  opacity: 1 !important;
}
.main-editor .badge-role-platform-admin {
  background: #f3e8ff;
  color: #6b21a8;
  border: 1px solid #e9d5ff;
}
.main-editor .badge-role-company-admin {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}
.main-editor .badge-role-digitizer {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* Nueva Orden Dropdown & Menu Overrides */
#nueva-orden-dropdown {
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  width: 220px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  padding: 8px;
  z-index: 2000;
}
.no-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'GothamPro', 'Gotham Pro', sans-serif;
  font-size: 14px;
  color: #333F4A;
  transition: all 0.2s ease;
}
.no-dd-item:hover {
  background: #f1f5f9;
  color: #12151A;
}
.no-dd-item img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  filter: invert(40%) sepia(10%) saturate(300%) hue-rotate(180deg);
  transition: all 0.2s ease;
}
.no-dd-item:hover img {
  opacity: 0.9;
  filter: invert(24%) sepia(98%) saturate(2745%) hue-rotate(206deg) brightness(93%) contrast(106%);
}

/* TYPOGRAPHY NORMALIZATION */
.main-editor .editor-title,
.main-editor .op-title-dark,
.main-editor .card-title,
.main-editor .modal-title,
.main-editor #placeholder-title,
.modal-content .modal-title,
#duplicateConfirmModal h3,
.main-editor .op-title {
  font-family: 'Gotham Pro', sans-serif !important;
  font-size: 20px !important; /* H6 Medium 20px */
  font-weight: 500 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.02em !important;
  color: var(--text-primary) !important;
  text-transform: none !important;
}

.main-editor label,
.main-editor th,
.main-editor .table-view th,
.modal-content label,
#duplicateConfirmModal label {
  font-family: 'Gotham Pro', sans-serif !important;
  font-size: 10px !important; /* Overline Regular All Caps 10px */
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  line-height: 1.4 !important;
  color: var(--text-muted) !important;
  font-weight: 400 !important;
}

.main-editor,
.main-editor .form-control,
.main-editor td,
.main-editor .table-view td,
.main-editor p,
.modal-content,
.modal-content .form-control,
#duplicateConfirmModal p {
  font-family: 'Gotham Pro', sans-serif !important;
  font-size: 14px !important; /* Body 2 Regular 14px */
  line-height: 1.5 !important;
  color: var(--text-secondary) !important;
  font-weight: 400 !important;
}

.btn-warning-outline {
  background: rgba(250, 193, 38, 0.08) !important;
  border: 1px solid var(--color-warning) !important;
  color: var(--color-warning) !important;
  font-weight: 500 !important;
}
.btn-warning-outline:hover {
  background: rgba(250, 193, 38, 0.18) !important;
  border-color: var(--color-warning) !important;
  color: var(--color-warning) !important;
}

/* Ensure primary cell values look prominent but strictly within system weights */
.main-editor .table-view td:first-child {
  color: var(--text-primary) !important;
  font-weight: 500 !important;
}

.main-editor .text-muted,
.main-editor .ac-sub,
.main-editor .metadata,
.main-editor .secondary-text,
.main-editor td:nth-child(2),
#duplicateConfirmModal .dup-subtext {
  font-family: 'Gotham Pro', sans-serif !important;
  font-size: 12px !important; /* Caption Regular 12px */
  color: var(--text-placeholder) !important;
  font-weight: 400 !important;
}

/* Scoped Autocomplete Light dropdown */
.main-editor .ac-dropdown {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
}
.main-editor .ac-item {
  border-bottom: 1px solid #f1f5f9;
}
.main-editor .ac-item:hover {
  background: #f1f5f9;
}
.main-editor .ac-title {
  color: #0f172a;
}
.main-editor .ac-sub {
  color: #64748b;
}

/* Scoped list/card container item wrappers */
.main-editor .cp-line-item,
.main-editor .route-stop-item,
.main-editor .searchable-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
}

/* Contextual topbar action hover colors for specific operations */
#btn-hdr-save:hover {
  background: rgba(16, 185, 129, 0.08) !important;
}
#btn-hdr-save:hover .global-icon {
  filter: invert(39%) sepia(87%) saturate(1637%) hue-rotate(120deg) brightness(98%) contrast(92%) !important;
}

#btn-hdr-delete:hover {
  background: rgba(220, 38, 38, 0.08) !important;
}
#btn-hdr-delete:hover .global-icon {
  filter: invert(15%) sepia(87%) saturate(5412%) hue-rotate(338deg) brightness(81%) contrast(109%) !important;
}

#btn-hdr-cancel-shipment:hover {
  background: rgba(250, 193, 38, 0.08) !important;
}
#btn-hdr-cancel-shipment:hover .global-icon {
  filter: invert(80%) sepia(66%) saturate(2254%) hue-rotate(340deg) brightness(101%) contrast(97%) !important;
}

#btn-hdr-archive-shipment:hover {
  background: rgba(0, 107, 220, 0.08) !important;
}
#btn-hdr-archive-shipment:hover .global-icon {
  filter: invert(24%) sepia(98%) saturate(2745%) hue-rotate(206deg) brightness(93%) contrast(106%) !important;
}

/* Overrides for dark theme duplicate modal typography & buttons */
#duplicateConfirmModal {
  color: #ffffff !important;
}
#duplicateConfirmModal .modal-content {
  background: #1e293b !important;
  color: #e2e8f0 !important;
}
#duplicateConfirmModal h3.modal-title,
#duplicateConfirmModal h3 {
  color: #ffffff !important;
}
#duplicateConfirmModal p {
  color: #cbd5e1 !important;
}
#duplicateConfirmModal label {
  color: #94a3b8 !important;
}
#duplicateConfirmModal .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  background: transparent !important;
}
#duplicateConfirmModal .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #ffffff !important;
}
#duplicateConfirmModal .btn-success {
  background: var(--color-success) !important;
  color: #ffffff !important;
}
#duplicateConfirmModal .btn-success:hover {
  background: var(--color-success-hover) !important;
}
#duplicateConfirmModal .btn-warning-outline {
  background: rgba(250, 193, 38, 0.12) !important;
  border: 1.5px solid var(--color-warning) !important;
  color: var(--color-warning) !important;
  font-weight: 600 !important;
}
#duplicateConfirmModal .btn-warning-outline:hover {
  background: rgba(250, 193, 38, 0.22) !important;
  color: #ffd257 !important;
  border-color: #ffd257 !important;
}

