.check-grid {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 15px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
    .check-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        text-align: left;
    }
    .evaluation { justify-self: start; }
}

.description {
    word-break: break-word;
    hyphens: auto;
    line-height: 1.4;
    max-width: 800px;
    font-size: 16px;
}

.comment-form {
    width: 100%;
}

.comment-input {
    width: 100%;
    min-width: 20em;
}

.comment-text {
    cursor: pointer;
    word-break: break-word;
    line-height: 1.4;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-block;
    min-height: 1.4em;
}

.comment-text:hover {
    border-color: #ddd;
}

.comment-text:empty::before {
    content: "Comment";
    color: gray;
}
