.confirm-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
}

.confirm-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  min-width: 280px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.confirm-message {
  margin: 0;
  font-size: 1.2rem;
  color: #333;

  font-weight:bold;
  text-align:left;
}

.confirm-desc {
  margin: 10px 0px 0px;
  font-size: 0.8rem;

  color: #999;
  text-align:left;  
}
.confirm-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.confirm-ok {
  background: #007bff;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.confirm-ok:hover {
  background: #0056b3;
}

.confirm-cancel {
  background: #e0e0e0;
  color: #333;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.confirm-cancel:hover {
  background: #c5c5c5;
}
