.buttons {
    display flex;
    gap 10px;
}
.buttons {
    display flex;
    gap 10px;
}

button {
    font-size 12px;
    border none;
    padding 5px 7px;
    cursor pointer;
    display flex;
    align-items center;
    justify-content center;
    border-radius 3px;
    transition background-color 0.3s ease;
}

.like-button {
    background-color #4CAF50;
    color white;
}

.dislike-button {
    background-color #F44336;
    color white;
}

buttonhover {
    filter brightness(1.2); 
}
