.rsc-sales-container {
    margin: 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.rsc-sales-content {
    display: inline-flex;
    align-items: center;
    background-color: #fff9e6;
    border: 1px solid #ffeeba;
    padding: 8px 14px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(255, 193, 7, 0.1);
}

.rsc-emoji {
    font-size: 18px;
    margin-right: 8px;
    line-height: 1;
}

.rsc-text {
    font-size: 14px;
    color: #856404;
}

.rsc-count {
    font-size: 15px;
    font-weight: 700;
    color: #d32f2f;
    background: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #ffdfdf;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

/* Simple fade in animation */
.rsc-fade-in {
    animation: rsc-fadeIn 0.5s ease-in-out;
}

@keyframes rsc-fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
