body {
  font-family: Arial, sans-serif;
  padding: 20px;
}

input, select, button {
  padding: 10px;
  font-size: 16px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}



@media (max-width: 600px) {
  .container {
      width: 100%;
  }
}
