* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 90%;
  margin: auto;
  padding: 2rem;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 2rem;
}

h1 {
  color: #0f6cee;
}

h2 {
    color: #074c92;
}

.section {
  margin-top: 2rem;
}

.faq details {
  background: #eef1f6;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 10px;
  cursor: pointer;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
}

a {
  color: #1a73e8;
  text-decoration: none;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 1rem;
  font-weight: bold;
}

form input, form textarea {
  padding: 0.5rem;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  margin-top: 1rem;
  padding: 0.75rem;
  border: none;
  background: #02418e;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #037190;
}

.status {
  margin-top: 10px;
  color: green;
}

footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}




.report-entry {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
}


.rating-section {
  margin-top: 10px;
}

.assist-question {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 16px;
  color: #333;
}

.stars {
  display: flex;
  gap: 10px;
  font-size: 24px;
  cursor: pointer;
  user-select: none;
}

.star {
  color: #ccc;
  transition: color 0.3s, transform 0.2s;
}

.star:hover,
.star:hover ~ .star {
  color: #FFD700;
  transform: scale(1.1);
}

.status {
  margin-top: 6px;
  font-size: 14px;
}


/* 📱 Universal responsive adjustments */
@media (max-width: 480px) {
  .container {
    max-width: 95%;
    padding: 1rem;
    margin-top: 1rem;
  }

  h1 {
    font-size: 1.6rem;
    text-align: center;
  }

  h2 {
    font-size: 1.3rem;
  }

  .section {
    margin-top: 1.5rem;
  }

  .faq details {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  ul li {
    margin: 8px 0;
    font-size: 0.95rem;
  }

  form {
    gap: 0.8rem;
  }

  form label {
    margin-top: 0.5rem;
    font-size: 0.95rem;
  }

  form input,
  form textarea {
    padding: 0.45rem;
    font-size: 0.95rem;
  }

  button {
    padding: 0.6rem;
    font-size: 0.95rem;
  }

  .report-entry {
    padding: 0.8rem;
  }

  .assist-question {
    font-size: 0.9rem;
  }

  .stars {
    font-size: 20px;
    gap: 8px;
  }

  footer {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
}
