/* ================= TAB BUTTONS (Custom Style) ================= */
.btn-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #777;
  font-size: 16px;
  padding: 0 10px;
  transition: all 0.3s;
  border-radius: 0;
}
.btn-tab:hover,
.btn-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* ================= MODERN BUTTONS ================= */
.btn-primary {
  width: 100%;
  height: 50px;
  background: var(--color-primary);
  color: white;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.btn-primary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-primary:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  border-color: #ccc;
}

.btn-pill-modern {
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pill-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

.btn-icon-only {
  background: transparent;
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-icon-only:hover {
  background-color: #f3f4f6;
  transform: scale(1.1);
}

.btn-icon-only:active {
  transform: scale(0.95);
}

.add-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #6366f1;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: auto !important; /* User request */
}
.add-btn:hover {
  background-color: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.action-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}
.action-btn:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.btn-social {
  flex: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-social:hover {
  border-color: #ccc;
  background-color: #f9f9f9;
}
.btn-social img {
  width: 20px;
  height: 20px;
}


/* ================= UTILITY CLASSES ================= */
.text-danger {
  color: #ef4444 !important;
}
.text-success {
  color: #25d366 !important;
}
.text-primary {
  color: var(--color-primary) !important;
}
.text-muted {
  color: #9ca3af !important;
}

.border-bottom-dashed {
  border-bottom: 1px dashed #eee !important;
}

.badge-status {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
}
.bg-success-soft {
  background-color: #e6f7ee;
}
.bg-danger-soft {
  background-color: #fdeded;
}

/* ================= ANIMATIONS & SPINNERS ================= */
.spinner-border-sm {
  width: 18px;
  height: 18px;
  border: 2px solid white;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.spinner-border {
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f0f0f0;
  border-top: 5px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.success-animation {
  margin-bottom: 20px;
}
.checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: var(--color-primary);
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px var(--color-primary);
  animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
}
.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: var(--color-primary);
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: white;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}


@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scale {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 50px var(--color-primary);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, -100%);
  }
  50% {
    transform: translate(-50%, -110%);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(40px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}


/* 
=========================================================================
  MODERN COMPONENTS (MODAL, FORMS, CARDS, etc.)
=========================================================================
*/

/* ========== LOADING & EMPTY STATES ========== */
.loading-state,
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 16px;
  text-align: center;
}
.loading-state .spinner-border {
  width: 48px;
  height: 48px;
  border: 4px solid #e2e8f0;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.loading-state p {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}
.empty-state {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}
.empty-state i {
  font-size: 56px;
  color: #cbd5e1;
  margin-bottom: 24px;
}
.empty-state h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px;
}
.empty-state p {
  font-size: 14px;
  color: #64748b;
  max-width: 400px;
  margin: 0;
}

.form-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  z-index: 20;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

/* ========== INFO & ADDRESS CARDS ========== */
.info-card, .address-card {
  background: white;
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.2s ease;
}
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}
.card-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.address-header .title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
.addresses-container {
  display: grid;
  gap: 16px;
}
.address-card {
  padding: 0;
}
.address-card.main-address {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.address-card.selectable {
  cursor: pointer;
}
.address-card.selectable:hover {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.address-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
}
.address-card .card-body {
  padding: 16px 20px;
}
.address-name {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}
.badge-main {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  background: #eef2ff;
  color: #6366f1;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
}
.contact-info {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
}
.contact-name {
  font-weight: 600;
  color: #334155;
}
.contact-phone {
  color: #64748b;
}
.address-full {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}
.address-note {
  margin-top: 12px;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 8px;
  font-size: 13px;
  color: #64748b;
}
.address-note i {
  margin-right: 6px;
}


/* ========== LISTS (SOCIAL, CONTACT) ========== */
.social-media-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-media-item {
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.social-media-item:hover {
  background-color: #f8fafc;
}
.icon-wrapper {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-right: 16px;
}
.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.social-media-item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.social-title {
  font-size: 15px;
  font-weight: 600;
  color: #334155;
}
.social-desc {
  font-size: 13px;
  color: #64748b;
}
.arrow {
  font-size: 16px;
  color: #cbd5e1;
  transition: color 0.2s ease;
}
.social-media-item:hover .arrow {
  color: #6366f1;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
}
.contact-icon {
  font-size: 18px;
  color: #6366f1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eef2ff;
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
}
.contact-label {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 2px;
}
.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-value:hover {
  color: #6366f1;
}

/* ========== MODERN MODAL ========== */
.modern-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  padding: 20px;
  overflow-y: auto;
}

.modern-modal-content {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 850px;
  max-height: 90vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  margin: auto;
}
.modern-modal-content.modal-sm {
    max-width: 450px;
}


.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-title i {
  color: #6366f1;
}

.modal-header .modal-title {
    font-size: 18px;
}
.modal-header .modal-title i.fa-exclamation-triangle {
    color: #ef4444;
}

.modal-close-btn {
  background: #f1f5f9;
  border: none;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  transform: rotate(90deg);
}

.modal-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
}
.modal-body p {
    font-size: 15px;
    color: #475569;
}

.modal-footer {
  display: flex;
  gap: 12px;
  padding: 20px 28px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 0 0 20px 20px;
  flex-shrink: 0;
  justify-content: flex-end;
}

.modal-loading-state {
  text-align: center;
  padding: 80px 20px;
}

.modal-loading-state .spinner-border {
  width: 48px;
  height: 48px;
  border: 4px solid #f1f5f9;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.modal-loading-state p {
  margin-top: 20px;
  color: #64748b;
  font-size: 15px;
}

/* ========== MODERN FORMS & SEARCH ========== */
.form-header {
  text-align: center;
  margin-bottom: 30px;
}
.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
}
.form-header p {
  font-size: 15px;
  color: var(--color-body);
  max-width: 350px;
  margin: 0 auto;
}

.form-section {
  padding: 24px 28px;
  border-bottom: 1px solid #f1f5f9;
}

.form-section:last-child {
  border-bottom: none;
}

.form-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #334155;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.form-section-title i {
  color: #6366f1;
  font-size: 16px;
}

.form-group, .form-group-modern {
  margin-bottom: 15px;
}

.form-group:last-child, .form-group-modern:last-child {
  margin-bottom: 0;
}

.form-group-flex {
  display: flex;
  gap: 15px;
}
.form-group-flex > div {
  flex: 1;
}

.form-label, .form-label-modern {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
  display: block;
}

.input-wrapper {
  position: relative;
}
.input-wrapper i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #9a9a9a;
  font-size: 16px;
}
.input-wrapper input {
  width: 100%;
  height: 50px;
  padding: 0 20px 0 42px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}
.input-wrapper input:focus {
  outline: none;
  border-color: var(--color-primary);
}
.input-wrapper .toggle-password {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #9a9a9a;
}

.otp-input-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.otp-input {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background-color: #f7f7f7;
  transition: all 0.3s ease;
}
.otp-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(53, 119, 240, 0.15);
}


.form-input-modern,
.form-select {
  width: 100%;
  padding: 0 14px;
  font-size: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.2s ease;
  color: #334155;
  height: 42px;
  line-height: 42px;
}

.form-input-modern:focus,
.form-select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  outline: none;
}

textarea.form-input-modern {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
  height: auto;
  line-height: 1.6;
  padding: 11px 14px;
}

select.form-input-modern {
  cursor: pointer;
}

.form-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.form-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.form-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  border-radius: 34px;
  transition: 0.3s;
}

.form-switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-switch input:checked + .slider {
  background-color: #6366f1;
}

.form-switch input:checked + .slider:before {
  transform: translateX(22px);
}

.form-switch input:disabled + .slider {
  background-color: #e2e8f0;
  cursor: not-allowed;
  opacity: 0.6;
}

.error-text {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
}

.error-text i {
  font-size: 10px;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  color: #aaa;
  margin: 30px 0;
  font-size: 13px;
}
.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e5e5e5;
}
.separator:not(:empty)::before {
  margin-right: 1em;
}
.separator:not(:empty)::after {
  margin-left: 1em;
}

.social-login {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 12px;
  z-index: 20;
}
.search-input-wrapper .search-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  z-index: 2;
}
.search-input-wrapper .form-input-modern {
    padding-left: 40px;
    padding-right: 40px;
}
.search-input-wrapper .search-spinner {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  z-index: 2;
}
.autocomplete-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-height: 280px;
  overflow-y: auto;
  z-index: 1000;
}
.autocomplete-results ul {
  list-style: none;
  margin: 0;
  padding: 8px;
}
.autocomplete-results li {
  padding: 12px 14px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
  color: #334155;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.autocomplete-results li:hover {
  background-color: #f1f5f9;
}
.autocomplete-results .result-icon {
  color: #6366f1;
  font-size: 14px;
  flex-shrink: 0;
}

/* ========== ALERTS ========== */
.custom-alert {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 20px;
  background-color: #fff2f2;
  border: 1px solid #ffcccc;
  border-radius: 8px;
  color: #d8000c;
  font-size: 14px;
}
.alert-icon {
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}
.alert-message {
  flex-grow: 1;
  line-height: 1.4;
}
.custom-alert .btn-close {
  padding: 1em;
  margin-left: 15px;
  font-size: 12px;
  filter: grayscale(1) brightness(1.5);
}


/* ========== MODAL / FORM BUTTONS ========== */
.btn-cancel {
  padding: 11px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: #ffffff;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.btn-cancel:hover:not(:disabled) {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.btn-save {
  padding: 11px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 14px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: #6366f1;
  color: white;
}

.btn-save:hover:not(:disabled) {
  background: #4f46e5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-danger {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  background: #ef4444;
  border: 1px solid #ef4444;
  color: white;
  flex: 1;
}

.btn-save:disabled,
.btn-cancel:disabled,
.btn-danger:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========== MODAL ANIMATIONS ========== */
.modal-fade-enter-active,
.modal-fade-leave-active {
  transition: opacity 0.3s ease;
}
.modal-fade-enter-from,
.modal-fade-leave-to {
  opacity: 0;
}
.modal-fade-enter-active .modern-modal-content,
.modal-fade-leave-active .modern-modal-content {
  transition: transform 0.3s ease;
}
.modal-fade-enter-from .modern-modal-content {
  transform: scale(0.9);
}
.modal-fade-leave-to .modern-modal-content {
  transform: scale(0.95);
}

/* ========== SCROLLBARS ========== */
.modern-modal-content::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
.autocomplete-results::-webkit-scrollbar {
  width: 8px;
}

.modern-modal-content::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track,
.autocomplete-results::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.modern-modal-content::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb,
.autocomplete-results::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.modern-modal-content::-webkit-scrollbar-thumb:hover,
.modal-body::-webkit-scrollbar-thumb:hover,
.autocomplete-results::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}