/* Estilos para notificação de sucesso */
.success-notification {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ffffff;
    border-left: 4px solid #00E676;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 2000;
    max-width: 350px;
    animation: slideIn 0.5s ease-out forwards;
}

.success-notification.show {
    display: flex;
}

.success-notification-content {
    display: flex;
    align-items: center;
}

.success-icon {
    background-color: #e6fff0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.success-icon i {
    color: #00E676;
    font-size: 20px;
}

.success-message {
    flex-grow: 1;
}

.success-message h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.success-message p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.success-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
