/* Estilo para notificação de vendas */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: none;
    animation: slideIn 0.5s ease-in-out;
}

.notification-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 300px;
}

.notification-check {
    background-color: #25D366;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.notification-text {
    color: #333333;
    font-size: 14px;
    line-height: 1.4;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.notification-container.hiding {
    animation: slideOut 0.5s ease-in-out forwards;
}

/* Estilos do Contador de Licenças */
.license-counter {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin-top: 20px;
    padding: 15px 25px;
    background-color: rgba(255, 87, 34, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.license-counter.show {
    opacity: 1;
    visibility: visible;
}

.counter-text {
    font-size: 18px;
    color: #FF5722;
    font-weight: 600;
    margin: 0;
}

#licenseCount {
    font-size: 22px;
    font-weight: 700;
    color: #FF3D00;
} 