body {
  background-color: black;
  background-image: url("images/epicspace.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #3aed04;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100vw;
}

@import url("https://fonts.googleapis.com/css2?family=Tektur:wght@400;700&display=swap");

.tektur-body {
  font-family: "Tektur", sans-serif;
  font-weight: 500;
}

.container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100vw;
}

.image-container {
  position: sticky;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 50%;
}

.image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

.form-container {
  flex: 1;
  padding: 50px;
  min-height: 100vh;
  overflow-y: auto;
}

.price-banner {
  position: fixed;
  align-items: start;
  top: 20px;
  left: 20px;
  background-color: #cf34ca;
  color: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

@keyframes blink {
  0% {
    opacity: 1;
    background-color: #cf34ca;
  }
  50% {
    opacity: 0.2;
    background-color: #7a0f44;
  }
  100% {
    opacity: 1;
    background-color: #cf34ca;
  }
}

.blink {
  animation: blink 0.5s ease-in-out;
}

#orderSummary {
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #cf34ca;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-family: "Tektur", sans-serif;
}

button:hover {
  background-color: #14e72d;
}

button:active {
  background-color: #095b16;
  transform: scale(0.98);
}

#checkoutBtn {
  margin: 50px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-items: center;
}

.modal-open .main {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  color: #7a0f44;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  filter: none;
}

.modal-content {
  background-color: #fefefe;
  position: fixed;
  top: 40%;
  right: 75px;
  transform: translateY(-50%);
  padding: 20px;
  border: 1px solid #888;
  width: 250px;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}

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

h3 {
  margin-top: 15px;
}

input[type="checkbox"] {
  margin-right: 5px;
}

select,
label {
  display: block;
  margin-top: 10px;
}

#viewOrdersBtn {
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 5px;
}

#viewOrdersBtn:hover {
  background-color: #45a049;
}

@media (max-width: 768px) {
  #orders-container {
    padding: 10px;
  }

  .order {
    padding: 10px;
  }

  button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }

  #search {
    width: 100%;
  }
}
