/* General Styles */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.logo {
  height: 70px;
  margin-bottom: 13vh;
  margin-top: 6vh;
}

.progress-bar {
  width: 200px;
  height: 5px;
  background-color: #333;
  border-radius: 10px;
}

.progress-fill {
  width: 0;
  height: 5px;
  background-color: #fff;
  border-radius: 10px;
  transition: width 1s linear;
}

/* Modal Styles */
.modal {
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  align-items: center;
  justify-content: center;
  display: flex;
  margin-top: 40px;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 40px;
  border: 1px solid #888;
  width: 50%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  border-radius: 10px;
  transform: scale(0);
  animation: modalOpen 0.5s forwards;
}

@keyframes modalOpen {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Input and Button Styles */
input[type="number"] {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 30px;
}

button {
  padding: 10px 20px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  background-color: #007aff;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #005ecb;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .modal-content {
    width: 80%;
    padding: 20px;
  }
}
