.post-rating_container {
    background-color: #f5f5f5;
    padding: 40px 80px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    gap: 20px;
}
.post-rating_container span {
    font-size: 1.5rem;
}
.post-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.post-rating_wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}
.post-rating .vote-btn {
    background-color: #fff !important;
    padding: 10px;
    border-radius: 10px;
    font-size: 24px;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: transform 0.2s;
}
.post-rating .vote-btn:hover:not([disabled]) {
    transform: scale(1.2);
}
.post-rating .vote-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
.post-rating .vote-btn.vote-btn-sad {
    background-color: #E57373 !important;
}
.post-rating .vote-btn.vote-btn-neutral {
    background-color: #B0BEC5 !important;
}
.post-rating .vote-btn.vote-btn-happy {
    background-color: #81C784 !important;
}
.post-rating img {
    width: 80px;
    height: auto;
    transition: 0.3s ease-in-out;
}
.post-rating img:hover {
    transform: rotate(45deg);
}
.post-rating .vote-msg {
    flex-basis: 100%;
    color: #000;
    font-size: 1rem;
}
@media screen and (max-width: 481px) {
    .post-rating_container {
        padding: 20px;
    }
}
