@charset "UTF-8";

/* Dialog */
.dialog-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.dialog-box {
  background: #000000;
  border: 5px solid #ffb800;
  border-radius: 10px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-align: center;
}

.dialog-message {
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
  line-height: 2rem; 
}

.dialog-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dialog-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

button.ok {
  background: #007bff;
  color: #fff;
}

button.cancel {
  background: #ddd;
  color: #333;
}
/* Dialog */