#wcmn-content table {
    margin-top: 30px;
    margin-bottom: 30px;
}

#wcmn-content .widefat th {
    padding: 20px;
    font-weight: bold;
}

#wcmn-content .widefat td {
    padding: 20px 20px 15px 20px;
}

#wcmn-content td span {
    font-size: 10px;
    position: relative;
    top: 4px;
    display: block;
}

.marketing-notification {
    width: fit-content;
    position: fixed;
    background-color: #323232;
    color: #ccc;
    padding: 15px 25px 15px 20px;
    border-radius: 7px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    line-height: 16px;
    z-index: 999999999999999;
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    display: flex;
    align-items: center;
    max-width: 380px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 20px;
}

@media (max-width: 600px) {
    .marketing-notification {
        width: fit-content;
        max-width: calc(100% - 40px);
    }
}

.marketing-notification.claro {
    background-color: #fff;
    color: #323232;
}

.marketing-notification p {
    margin-bottom: 0px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.marketing-notification strong {
    font-size: 14px;
    line-height: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.marketing-notification a {
    color: white;
    text-decoration: underline;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.marketing-notification.claro a {
    color: #323232;
}

.marketing-notification .product-image {
    width: 60px;
    height: 60px;
    background: #fff;
    object-fit: cover;
    border-radius: 5px;
    margin: -5px 10px -5px -10px;
}

.pulsating-circle {
    min-width: 13px;
    max-width: 13px;
    min-height: 13px;
    max-height: 13px;
    border-radius: 100%;
    display: inline-block;
    margin-right: 15px;
    animation: pulse-animation 2s infinite;
    background-color: currentColor;
}

.pulsating-circle.notification {
    color: #3FCF68;
    margin: 5px 15px 5px 0px;
}

.pulsating-circle.alert {
    color: #F54304;
    margin: 5px 15px 5px 0px;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 currentColor;
    }
    100% {
        box-shadow: 0 0 0 13px transparent;
    }
}

/* Animação para aparecer vindo de baixo */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação para desaparecer indo para baixo */
@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Aplicar a animação de saída para baixo */
.marketing-notification.fade-out {
    animation: fadeOutDown 0.5s forwards;
}

/* Posições das notificações */
.marketing-notification.superior-esquerda {
    top: 0;
    left: 0;
}

.marketing-notification.superior-centralizada {
    top: 0;
    left: calc(50% - 20px) !important;
    transform: translateX(-50%) !important;
}

.marketing-notification.superior-direita {
    top: 0;
    right: 0;
}

.marketing-notification.inferior-esquerda {
    bottom: 0;
    left: 0;
}

.marketing-notification.inferior-centralizada {
    bottom: 0;
    left: calc(50% - 20px) !important;
    transform: translateX(-50%) !important;
}

.marketing-notification.inferior-direita {
    bottom: 0;
    right: 0;
}