body {
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    margin: 0;
    padding: 30px;
}

.long-question-card,
.review-card {
    max-width: 850px;
    margin: 0 auto 30px auto;
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.10);
}

.question-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: bold;
}

textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: vertical;
}

.upload-row {
    margin-top: 15px;
    margin-bottom: 20px;
}

button {
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    border: none;
}

.score-box {
    text-align: center;
    margin: 25px 0;
}

.score {
    font-size: 52px;
    font-weight: bold;
}

.score span {
    font-size: 24px;
    font-weight: normal;
}

.score-label {
    font-size: 14px;
    margin-top: 5px;
}

.review-section {
    margin-top: 30px;
}

.review-section h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.review-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.criterion {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.criterion-title {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-weight: bold;
}

.criterion-feedback {
    margin-top: 7px;
    line-height: 1.5;
}