.mc-widget {
    background: linear-gradient(135deg, #f8fffc, #eef7f3);
    padding: 20px;
    border-radius: 18px;
    text-align: center;
    max-width: 340px;
    margin: 0 auto;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.08),
        0 2px 6px rgba(0,0,0,0.04);
}

.mc-title {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c3e50;
}

.mc-emojis {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.mc-emojis span {
    font-size: 26px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mc-emojis span:hover {
    transform: scale(1.3);
}

.mc-emojis span.selected {
    transform: scale(1.4);
}

.mc-result {
    margin-top: 10px;
    font-size: 14px;
    color: #27ae60;
    min-height: 20px;
}