* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4e4ba;
  font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   Main Container
========================= */
.container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  min-height: 45vh;
  width: 40vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* =========================
   Headings & Text
========================= */
h2 {
  text-align: center;
}

.subtitle {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* =========================
   Form
========================= */
form {
  margin: 1.5rem 0 1rem 0;
}

form select,
form button,
form input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0.75rem;
}

form input {
  border: 1px solid lightgray;
  font-size: 1rem;
  height: 3rem;
  padding-left: 0.75rem;
}

/* =========================
   Dropdown Section
========================= */
.dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.dropdown i {
  font-size: 1.5rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.dropdown i:hover {
  transform: rotate(180deg);
}

/* =========================
   Select Container
========================= */
.select-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  border-radius: 0.5rem;
  border: 1px solid lightgray;
  padding: 0.3rem;
  gap: 0.4rem;
}

.select-container img {
  max-width: 2rem;
}

.select-container select {
  font-size: 1rem;
  width: auto;
  cursor: pointer;
}

/* =========================
   Result & Status
========================= */
.msg {
  margin: 2rem 0 0.5rem 0;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
}

.status {
  font-size: 0.8rem;
  color: green;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* =========================
   Button
========================= */
form button {
  height: 3rem;
  background-color: #af4d98;
  color: white; /* FIXED */
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

form button:active {
  transform: scale(0.97);
}

/* =========================
   Footer
========================= */
.footer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #666;
  text-align: center;
}
