body {
  font-family: "Arial", sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: #ceefff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 300px;
}

.container img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

input[type="text"],
select {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

input[type="text"]:focus,
select:focus {
  border-color: #0056b3;
  outline: none;
}

button {
  background-color: #0056b3;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #004494;
}

button[type="submit"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}
/* =========================
   RESULT PAGE STYLING
========================= */

body {
  background: linear-gradient(135deg, #eef6ff, #f9fbff);
}

/* tekst bericht */
body > p {
  font-size: 24px;
  font-weight: 700;
  color: #1f2a44;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  padding: 0 20px;
}

/* image styling */
body > img {
  display: block;
  margin: 0 auto;
  width: 320px;
  max-width: 90%;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* hover effect op image */
body > img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* optionele “card feel” rond alles */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
}
