.like-dislike-container {
    display: flex;
    align-items: center;
    gap: 15px; /* فاصله بین دکمه‌ها */
    margin: 6px 0 30px 0;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.like-dislike-container button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 14px;
}

.like-dislike-container button:hover {
    background-color: #e0e0e0;
}

.like-dislike-container button:active {
    transform: scale(0.95);
}

.like-dislike-container button.voted {
    background-color: #d4edda; /* رنگ سبز برای رای ثبت شده */
    border-color: #c3e6cb;
    cursor: not-allowed;
    opacity: 0.7;
}

.like-dislike-container svg {
    width: 20px;
    height: 20px;
    stroke: #333;
}