.reaction-container {
    text-align: center;
    margin: 20px 0;
}

.reaction-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
    margin: 0 auto;
    max-width: 500px;
}

.reaction-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.reaction-button:hover {
    transform: scale(1.1);
}

.reaction-button input {
    display: none;
}

.reaction-button i {
    font-size: 32px; /* Increased icon size */
    margin-bottom: 5px;
}

.reaction-button span {
    font-size: 16px;
    font-weight: bold;
}


.reaction-button svg{
    width: 100%;
    height: 100%;
}
