.like-dislike-buttons-container {
    padding: 34px 30px;
    background-color: #f0f0f0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 14px;
    row-gap: 16px;
    margin: 0;
}

@media (min-width: 576px) {
    .like-dislike-buttons-container {
        justify-content: flex-start;
    }
}

@media (min-width: 768px) {
    .like-dislike-buttons-container {
        padding: 34px 48px;
    }
}

@media (min-width: 992px) {
    .like-dislike-buttons-container {
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .like-dislike-buttons-container {
        justify-content: flex-start;
    }
    .like-dislike-buttons-container {
        padding-right: 10px;
    }
}

.like-dislike-headline {
    margin: 0;
    font-size: 17px;
}

.like-dislike-buttons {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}

/* .like-dislike-buttons.voted button{
    cursor: inherit;
    user-select: none;
} */


.like-dislike-buttons button {
    background-color: #47C95C;
    border-radius: 0.3125rem;
    padding: 3px 10px;
    transition: 0.3s;
    display: grid;
    place-items: center;
    border: none;
    color: #fff;
    cursor: pointer;
}

.like-dislike-buttons button:hover,
.like-dislike-buttons button:focus {
    background-color: #5ed67b;
}

.like-dislike-buttons.voted button:hover,
.like-dislike-buttons.voted  button:focus {
    background-color: #47C95C;
}

.like-dislike-buttons button:last-of-type {
    background-color: #D13411;
}

.like-dislike-buttons button:last-of-type:hover,
.like-dislike-buttons button:last-of-type:focus {
    background-color: #e25333;
}

.like-dislike-buttons button.hidden {
    background-color: #ccc;
}

