@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(to right, #d62d91, #3b2fc9); /* Pink to blue gradient */
  color: white;
  padding: 20px;
}

/* Force all text elements to white */
h1, h2, h3, h4, h5, h6,
p, span, a, li, td, th,
label, input, button, select, textarea {
  color: white !important;
}

header {
  background-color: transparent;
  padding: 20px;
  text-align: center;
}

header img {
  max-width: 180px;
  height: auto;
}

.tagline {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 20px;
  color: white;
}

h2, #overallResult, #subjectResult {
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.card, .subject-block {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

label {
  display: block;
  margin-top: 10px;
  font-weight: 500;
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid white;
  border-radius: 6px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

button {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

button:hover {
  opacity: 0.9;
}

.link-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  margin-top: 10px;
}

.link-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.label, .value {
  font-weight: bold;
  color: white;
}

.green, .orange, .red {
  font-weight: bold;
  color: white;
}

footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: white;
}
