/* Custom styles for COD confirmation modal */
#codConfirmation {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#codConfirmation.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cod-confirmation-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.cod-confirmation-buttons {
  margin-top: 20px;
}

.cod-confirmation-buttons button {
  margin: 0 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#confirmCod {
  background-color: #28a745;
  color: white;
}

#cancelCod {
  background-color: #dc3545;
  color: white;
}

#confirmCod:hover {
  background-color: #218838;
}

#cancelCod:hover {
  background-color: #c82333;
}
