/* Modal Styles */


.modal-content {
  position: fixed;
  justify-content: center;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  width: 80vw;
  height: auto;
  max-width: 90vw;
  border-radius: 4px;
  padding: 20px;
  padding-bottom: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 999999;
  text-align: center;
  border: 2px solid #c59655;

}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #c59655;
  cursor: pointer;
}

.close-button:hover {
  color: white;
}

input[type="text"] {
  display: block;
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
}

button[type="submit"] {
  background-color: #008cba;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.modal-content input[type="text"] {
  border: 2px solid #c59655;
  background-color: #212121;
  color: white;
  width: 250px;
  box-sizing: border-box;
  font-size: 16px;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}