.answerkeysSection {
  flex: 1 1 300px;
  border: 2px solid #d2691e;
  margin: 10px;
  text-align: left; /* center se left for better readability */
  border-radius: 8px; /* thoda modern look */
  background: #fff;
}

.heading {
  background-color: #ab183d;
  color: #fff;
  padding: 10px;
  font-size: 28px;
  text-align: center;
}

.heading a {
  color: #fff;
  text-decoration: none;
}

.answerkeysList {
  padding: 15px;
}

.answerkeysList ul {
  list-style: none; /* bullets hata diye */
  padding: 0;
  margin: 0;
}

.answerkeysList li {
  padding: 10px 0;
  font-size: 17px;
  border-bottom: 1px dashed #ddd;
  position: relative;
  padding-left: 18px;
  list-style: none;
}

.answerkeysList li::before {
  content: "➤"; /* custom arrow */
  position: absolute;
  left: 0;
  top: 12px;
  color: #ab183d;
  font-size: 12px;
}

.answerkeysList li a {
  color: blue;
  text-decoration: none;
}

.answerkeysList li a:hover {
  text-decoration: underline;
}

.viewMore {
  margin-top: 15px;
  text-align: right;
}

.viewMore a {
  font-size: 18px;
  font-weight: 700;
  color: #0000a0;
  text-decoration: none;
}

.newBadge {
  background: #ff0000;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 5px;
  margin-left: 6px;
  border-radius: 3px;
  animation: blink 1s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* 📱 Tablet */
@media (max-width: 768px) {
  .answerkeysSection {
    flex: 1 1 100%;
    margin: 5px;
  }
  .heading {
    padding: 8px;
    font-size: 22px;
    text-align: center;
  }
  .answerkeysList {
    padding: 10px;
  }
  .answerkeysList li {
    font-size: 15px;
    padding-left: 16px;
  }
}

/* 📱 Mobile */
@media (max-width: 550px) {
  .answerkeysList {
    padding: 5px;
  }

  .answerkeysList li {
    font-size: 14px;
    padding: 8px 0 8px 14px;
  }

  .viewMore {
    text-align: center;
    margin-top: 10px;
  }
}
