.answer-sheet {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 5px;
    font-size: 18px; /* Larger base font size */
}
.answer-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px;
}
.answer-label {
    font-weight: bold;
    width: 40px;
    text-align: right;
    margin-right: 15px;
    font-size: 20px; /* Larger question numbers */
}
.answer-input {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.choice-images {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}
.choice-image {
    cursor: pointer;
    width: 28px; /* Larger choice images */
    height: 28px;
}
.text-input {
    width: 100px; /* Wider input fields */
    padding: 6px 8px;
    font-size: 18px; /* Larger text in input fields */
    height: 35px;
}
.feedback-image {
    width: 22px; /* Larger feedback images */
    height: 22px;
    margin-left: 3px; /* Reduced margin to bring closer */
}
.buttons-container {
    margin-top: 20px;
    text-align: center;
}
.compact-table {
    border-collapse: collapse;
    width: auto !important; /* This is key */
    table-layout: auto !important; /* Let content determine width */
    font-size: 18px;
}

.compact-table td {
    //border: 2px solid red !important;
    padding: 8px 3px; /* Reduced padding to bring cells closer */
    vertical-align: middle;
    white-space: nowrap; /* Prevent wrapping */
}

.answer-cell {
    padding: 0 2px !important; /* Minimal padding */
    text-align: left;
    width: 1% !important; /* Force minimal width */
    white-space: nowrap;
}

.question-cell {
    font-weight: bold;
    text-align: left;
    padding-right: 5px;
    font-size: 20px;
    width: 1% !important; /* Force minimal width */
}

.feedback-cell {
    padding-left: 2px;
    width: 1% !important; /* Force minimal width */
}
.answer-section-title {
    font-size: 22px; /* Larger title */
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.loginButton {
    font-size: 18px; /* Larger button text */
    padding: 10px 20px;
    margin: 0 10px;
}
#highlight-green {
    font-size: 18px; /* Larger link text */
    margin-top: 15px;
}
.question-group {
    display: flex;
    align-items: center;
    margin-right: 15px;
}