.np-reaction-wrapper {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.03);
}

.np-reaction-question {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.np-reaction-items {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.np-reaction-item {
    background: transparent;
    border: none;
    cursor: pointer;
    flex: 1 1 18%;
    max-width: 120px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.np-reaction-item:focus {
    outline: none;
}

.np-reaction-item:hover {
    transform: translateY(-2px);
}

.np-reaction-percentage {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    background: #005bff;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.np-reaction-emoji {
    font-size: 30px;
}

.np-reaction-label {
    font-size: 14px;
    font-weight: 500;
}

.np-reaction-active .np-reaction-percentage {
    background: #ff3b30;
}

.np-reaction-wrapper.np-reaction-loading {
    opacity: 0.6;
    pointer-events: none;
}

.np-reaction-message {
    margin-top: 15px;
    font-size: 13px;
    color: #555;
}

/* responsive */
@media (max-width: 600px) {
    .np-reaction-items {
        justify-content: center;
    }
    .np-reaction-item {
        flex: 0 0 30%;
        max-width: none;
        margin-bottom: 10px;
    }
}
