/* SNP POPUP NOVO - MENOR + ESQUERDA */
#snp-notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.snp-notification {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-left: 4px solid #02c6f6;
    border-radius: 6px;
    padding: 8px 10px;
    width: 230px;
    max-width: 85vw;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    animation: snpSlideInLeft 0.4s ease forwards;
    display: flex;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.snp-notification-image {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid #00c853;
    flex-shrink: 0;
    animation: snpPulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 1);
}

.snp-notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.snp-notification-name {
    font-weight: 600;
    color: #011418;
    font-size: 12px;
    margin: 0;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
}

.snp-notification-text {
    font-size: 11px;
    color: #00c853;
    margin: 2px 0 0 0;
    line-height: 1.3;
    font-weight: 600; /* Aumentado para dar mais destaque */
    word-break: break-word;
    text-transform: uppercase; /* FORÇA O TEXTO "COMPROU" EM MAIÚSCULO */
}

.snp-notification-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: #888888;
    margin-top: 3px;
    gap: 4px;
}

/* ÍCONES DE LOCALIZAÇÃO E RELÓGIO (Substituindo Emojis) */
.snp-notification-city, .snp-notification-time {
    display: flex;
    align-items: center;
    gap: 3px;
}

.snp-notification-city::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #888888;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

.snp-notification-time::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #888888;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* ENTRADA PELA ESQUERDA */
@keyframes snpSlideInLeft {
    from { transform: translateX(-120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* SAÍDA PELA ESQUERDA */
@keyframes snpSlideOutLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-120%); opacity: 0; }
}

.snp-notification.removing {
    animation: snpSlideOutLeft 0.35s ease forwards;
}

@keyframes snpPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 1); }
    50% { box-shadow: 0 0 0 6px rgba(0, 200, 83, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

/* MOBILE */
@media (max-width: 480px) {
    #snp-notification-container {
        bottom: 12px;
        left: 12px;
        right: auto;
    }
    .snp-notification {
        width: 100%;
        max-width: 85vw;
    }
    .snp-notification-image {
        width: 40px;
        height: 40px;
    }
    .snp-notification-name {
        font-size: 11px;
    }
    .snp-notification-text {
        font-size: 10px;
    }
}
