/*BULK ORDER EDIT*/
  /* Overlay background */
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
  }

  /* Popup box */
  .popup-box {
    background: #fff;
    width: 95%;
    max-width: 1500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
  }

  /* Header */
  .popup-header {
    background: #fff;
    color: #f80000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d1d1d1;
  }

  .popup-header h2 {
    margin: 0;
    font-size: 1.2rem;
    color:#f80000;
  }

  .popup-header button {
    background: none;
    border: none;
    color: #f80000;
    font-size: 22px;
    cursor: pointer;
  }

  /* Table wrapper */
  .popup-content {
    padding: 20px;
    overflow-x: auto;
  }

  /* ✅ Custom dodeortable CSS */
  .dodeortable {
    width: 100%;
    border-collapse: collapse;
    /*font-size: 0.95rem;*/
    font-size:12px !important;
  }

  .dodeortable thead {
    background: #f80000;
    color: #fff;
  }

  .dodeortable th, .dodeortable td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    text-align: left;
    white-space: nowrap;
  }
  .dodeortable td select,.dodeortable td input {
    font-size:12px !important;
  }

  .dodeortable tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  .dodeortable tbody tr:hover {
    background-color: #eef6ff;
  }

  .dodeortable th {
    font-weight: bold;
    text-transform: capitalize;
  }

  /* Fade animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

  /* Button */
  .open-popup-btn {
    margin: 20px;
    padding: 10px 20px;
    background: #0769a1;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .popup-box {
      width: 100%;
      border-radius: 0;
    }
    .dodeortable th, .dodeortable td {
      font-size: 0.85rem;
      padding: 8px;
    }
  }
  .dd-bulk-btn{
    border-radius: 4px !important;
    margin-top: 15px !important;
    padding: 7px 31px !important;
  }
 .dd-btn{
  color: #fff !important;
  border-color: #f80000 !important;
  background: #f80000 !important;
  vertical-align: top;
}
span.dashicons.dashicons-yes.city-matched{
    background-color: green;
    color: #fff !important;
    padding: 1px;
    border-radius: 25px;
}
span.dashicons.dashicons-no-alt.city-unmatched {
    background-color: red;
    color: #fff !important;
    padding: 1px;
    border-radius: 25px;
}
.swal2-container {
    z-index: 10609999 !important;
}