.rating-section {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-section button {
    padding: 5px 10px;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    background: #ddd;
}

body.dark-mode .rating-section button {
    background: #333;
    color: #fff;
}

.rating-section button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.comments-section {
    margin-top: 20px;
}

.comment-form {
    margin-bottom: 20px;
}

.comment-form textarea {
    width: 100%;
    max-width: 500px;
    height: 60px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    resize: none;
    background: #fff;
    color: #000;
}

body.dark-mode .comment-form textarea {
    background: #333;
    color: #fff;
    border-color: #00cc00;
}

.comment-form button {
    padding: 5px 10px;
    background: #5cb85c;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.comment-form button:hover {
    background: #4cae4c;
}

.comment {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

body.dark-mode .comment {
    border-bottom-color: #00cc00;
}

.comment-meta {
    font-size: 0.9em;
    color: #666;
}

body.dark-mode .comment-meta {
    color: #ccc;
}