/* Confirmation Modal Styles */

/* Ensure modal appears above sidebar (which has z-index: 40) and navbar */
.modal {
  z-index: 1001;
}

/* Clean header style with subtle border instead of gradient shadow */
.modal-card-head {
  box-shadow: none;
  border-bottom: 1px solid #dbdbdb;
}

/* Dark mode modal styling */
[data-theme="dark"] .modal-card-head {
  background-color: #1f2937;
  border-bottom-color: #4b5563;
}

[data-theme="dark"] .modal-card-title {
  color: #f3f4f6;
}

[data-theme="dark"] .modal-card-body {
  background-color: #111827;
  color: #e5e7eb;
}

[data-theme="dark"] .modal-card-foot {
  background-color: #1f2937;
  border-top-color: #4b5563;
}
