#scoreGrid {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: left;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

body.light #scoreGrid {
    color: #000;
}

/* Keep text white in dark mode */
body:not(.light) #scoreGrid {
    color: white;
}

#resultsSummaryContainer {
    display: none;
}

body.pdf-export #resultsSummaryContainer {
    display: block;
}

/* Remove any remaining grid or box styles */
#scoreGrid > div {
    margin-bottom: 8px;
}

/* Larger spacing between sections */
#scoreGrid > div:nth-child(3n) {
    margin-bottom: 32px;
}
