
.answerkey-page {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.answerkey-title {
    text-align: center;
    color: #ab183d;
    font-size: 28px;
    margin-bottom: 10px;
}

.post-date {
    text-align: center;
    color: #d9534f;
    font-weight: bold;
    margin-bottom: 20px;
}

.answerkey-details {
    text-align: justify;
    margin-bottom: 30px;
    font-size: 18px;
}

.answerkey-section {
    margin-bottom: 25px;
}

.section-title {
    background-color: #ab183d;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 20px;
}

.section-details {
    list-style: none;
    padding-left: 20px;
}

.section-details li {
    padding: 5px 0;
    position: relative;
}

.section-details li::before {
    content: "➤";
    color: #ab183d;
    position: absolute;
    left: -20px;
}

.important-links {
    margin: 40px 0;
    padding: 25px;
    background-color: #fdf2f5; /* light pink background for emphasis */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center; /* center all text */
}

.important-links h2 {
    color: #ab183d;
    font-size: 42px; /* bigger heading */
    font-weight: 700;
    margin-bottom: 30px;
}

.important-links table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    margin: 0 auto; /* center table */
}

.important-links th, .important-links td {
    padding: 18px 15px; /* larger padding */
    border-radius: 10px;
    font-size: 18px; /* bigger text */
    text-align: center; /* center table text */
}

.important-links th {
    background-color: #ab183d;
    color: #fff;
    font-size: 20px; /* bigger header text */
}

.important-links td {
    background-color: #fff;
    transition: background 0.3s;
}

.important-links tr:hover td {
    background-color: #ffe3ed;
}

.important-links a {
    text-decoration: none;
    color: #e6007e;
    font-weight: 700;
    font-size: 18px; /* bigger link */
}

.important-links a:hover {
    text-decoration: underline;
    color: #ab183d;
}

/* Responsive */
@media (max-width: 1024px) {
    .important-links h2 { font-size: 36px; }
    .important-links th, .important-links td { font-size: 16px; padding: 16px 12px; }
}

@media (max-width: 768px) {
    .answerkey-title { font-size: 24px; }
    .section-title { font-size: 18px; }
    .answerkey-details { font-size: 16px; }
    .important-links h2 { font-size: 30px; }
    .important-links th, .important-links td { font-size: 15px; padding: 14px 10px; }
}

@media (max-width: 480px) {
    .answerkey-page { padding: 15px; }
    .answerkey-title { font-size: 20px; }
    .section-title { font-size: 16px; }
    .important-links h2 { font-size: 26px; }
    .important-links th, .important-links td { font-size: 14px; padding: 12px 8px; }
}

