body {
  background-image: url("/static/bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #24475d;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-width: 100vw;
}
#root {
  width: 100vw;
  height: 100vh;
}

#custom-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  display: none;
}

#custom-confirm-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#custom-confirm-box h3 {
  color: #d9534f;
  margin-bottom: 15px;
}

#custom-confirm-box p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

#custom-confirm-buttons {
  margin-top: 20px;
}

#custom-confirm-buttons button {
  padding: 10px 15px;
  margin: 0 5px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

#confirm-yes {
  background: #5cb85c;
  color: white;
}

#confirm-no {
  background: #d9534f;
  color: white;
}
