/* Basic popup style */
#mlsn-container {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 99999;
    pointer-events: none;
}
.mlsn-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #f0a835;
    padding: 12px 7px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 220px;
    pointer-events: auto;
    transform: translateX(20px);
    opacity: 0;
    transition: all .4s ease;
}
.mlsn-popup.show { transform: translateX(0); opacity:1; }
.mlsn-img img {
    width: 209px;
    height: auto !important;
    object-fit: cover;
    border-radius: 6px;
}
.mlsn-text { width: 90%; font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; font-size:14px; color:#222; }
.mlsn-text strong{ display:block; font-size:20px; color: #fff; text-transform: uppercase;}
.mlsn-meta {
    font-size: 14px;
    font-weight: 700;
    color: #f7f7f7;
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    border-top: 1px solid #eee;
}
