html {
  height: 100%;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* HEADER */
header {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: white;
  border-bottom: 1px solid #ddd;
}

header img {
  height: 45px;
}

/* MAIN SECTION */
.main {
  flex: 1;
  background-color: #a65137;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
  color: white;
}

.selection-row {
  width: 90%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.card {
  background: #eee;
  color: #a65137;
  padding: 20px;
  border-radius: 8px;
  width: 250px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.card:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* BUTTON ROW */
.button-row {
  margin-top: 50px;
  width: 90%;
  max-width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn {
  background: #eee;
  color: #a65137;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  background: #fff;
}

.gear-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

#statusText {
  margin-top: 30px;
  font-weight: bold;
}

/* Dropdown styles */
.dropdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.dropdown {
  margin: 10px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: white;
  color: #a65137;
  font-size: 16px;
}

.download-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #eee;
  color: #a65137;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.download-btn:hover {
  background: #fff;
}