@import url("/assets/scss/color.scss");
@import url("/assets/css/base.css");

body {
  font-family: 'Arial', sans-serif;
  background-color: #364156;
  color: #333; /* Dark text */
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: black;
}
#content {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  background-color: #ffffff; /* White container */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

/* Styling for informational notes */
.content p {
  font-size: 0.9em;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

/* Result section container */
.result {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Headings for sections like 'Finalists', 'Subject Toppers', etc. */
.result h2 {
  font-size: 1.5em;
  color: #d56752;
  margin-top: 0;
  border-bottom: 2px solid #d56752;
  padding-bottom: 5px;
}

/* List of institutions and participants */
.result ul, .result ol {
  padding-left: 20px;
  list-style-type: none;
  margin: 0;
}

/* Individual items in lists */
.result li {
  margin: 10px 0;
  font-size: 1em;
}

/* Styling for specific participant lists */
.result .participants {
  color: #555;
  font-size: 0.95em;
  margin-left: 20px;
}

/* Distinctive subject label styling */
.subject {
  font-weight: bold;
  color: #d56752;
  font-size: 1em;
}

/* Ordered list styling for Zonal Toppers */
.result ol > li {
  margin: 15px 0;
}

/* Additional styling for campus coordinator list */
.result ul {
  padding-left: 15px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .content {
      padding: 10px;
  }

  .result h2 {
      font-size: 1.3em;
  }

  .result li {
      font-size: 0.9em;
  }
}

