/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  height: 100%;
  overflow: auto;
  width: 100%;
}

/* Background Image (full page) */
html {
  background-image: url('images/peakpx.jpg'); /* Background image */
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
}

/* Flex container to align wish-setup and pity-controls side by side */
.wish-setup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 8%;
  margin-bottom: 20px;
}

/* Wish Setup and Pity Controls */
.wish-setup, .pity-controls {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  border-radius: 10px;
  padding: 25px;
  color: #f8c300;
  border: 2px solid #f8c300;
  width: 300px; /* Same width for both boxes */
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8); /* Slight shadow for depth */
  height: 150px; /* Fixed height for both boxes to make them appear the same size */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Vertically space the content */
}

/* Ensure inputs and buttons are styled similarly */
.wish-setup input, .pity-controls input {
  font-size: 1em;
  padding: 8px;
  margin-right: 10px;
  border: 1px solid #f8c300;
  border-radius: 5px;
  background-color: #333; /* Dark background for input field */
  color: #f8c300;
  margin-bottom: 10px; /* Add spacing between input and button */
}

.wish-setup button, .pity-controls button {
  font-size: 1em;
  padding: 8px 20px;
  background-color: #f8c300;
  border: none;
  cursor: pointer;
  color: #000;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}



/* Wish Setup */
.wish-setup {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  border-radius: 10px;
  padding: 25px;
  color: #f8c300;
  border: 2px solid #f8c300;
  width: 300px; /* Set a specific width */
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8); /* Slight shadow for depth */
}

.wish-setup input {
  font-size: 1em;
  padding: 8px;
  margin-right: 10px;
  border: 1px solid #f8c300;
  border-radius: 5px;
  background-color: #333; /* Dark background for input field */
  color: #f8c300;
  margin-bottom: 10px;
}

.wish-setup button {
  font-size: 1em;
  padding: 8px 20px;
  background-color: #f8c300;
  border: none;
  cursor: pointer;
  color: #000;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* Pity Controls */
.pity-controls {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 25px;
  color: #f8c300;
  border: 2px solid #f8c300;
  width: 300px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}

.pity-controls input {
  font-size: 1em;
  padding: 8px;
  margin-right: 10px;
  border: 1px solid #f8c300;
  border-radius: 5px;
  background-color: #333;
  color: #f8c300;
  margin-bottom: 10px;
}

.pity-controls button {
  font-size: 1em;
  padding: 8px 20px;
  background-color: #f8c300;
  border: none;
  cursor: pointer;
  color: #000;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* Adjusted Banner Size */
.banner {
  background-image: url('images/LR\ Teq\ Super\ Vegito.png'); /* Banner image */
  background-size: cover;
  background-position: center;
  width: 426px;
  height: 568px; /* Height of the banner */
  padding: 20px;
  border: 3px solid #f8c300;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.9);
  text-align: center;
  color: #fff;
  position:relative;
  margin-left: 42%;
  margin-top: 1%;
  margin-bottom: 20px; /* Space between banner and other elements */
}

/* Wish Buttons - Controls (under the banner) */
.wish-controls {
  text-align: center;
  margin-bottom: 20px;
  margin-right: 1%;
}

.wish-button {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #f8c300;
  border: none;
  cursor: pointer;
  margin: 10px;
  color: #000;
}

.wish-button:hover {
  background-color: #f4b400;
}

.tracker {
  margin: 20px auto;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  color: #f8c300;
  text-align: center;
  max-width: 400px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.9);
}

.tracker p {
  margin: 10px 0;
  font-size: 1em;
}

/* Tracker and Results Section */
.tracker, .results {
  background-color: transparent; /* No background needed */
  padding: 20px;
  color: #f8c300;
  text-align: left;
  width: 45%; /* Side by side */
  margin: 10px;
  border-radius: 10px;
  border: 1px solid #f8c300;
  background-color: #000;
  height: 400px; /* Set fixed height for both boxes */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures content is spaced out evenly */
}

.tracker h3, .results h2 {
  margin-bottom: 10px;
}

.tracker p, .results p {
  margin: 5px 0;
}

/* Flex container to align tracker and results side by side */
.side-by-side {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Ensure both boxes take the same height */
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
  margin-left: 30%;
}
