.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: 20px;
  line-height:28px;
  letter-spacing:-0.5px;
  color:#3D4147;
  font-weight:600;
  text-align:left;
}

.confirm-desc {
  margin: 10px 0px 0px;
  font-size: 16px;
  font-weight:400;
  line-height:24px;
  letter-spacing:-0.5px;
  color: #5F656D;
  text-align:left;  
}
.confirm-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-size:16px;
}

.confirm-buttons button {
    flex: 1;
}

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

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